Show latest blog entries
| Written by SVTechie | |||
| The Institute for System Level Integration (ISLI) has partnered with an offshoot
from EDA company Mentor Graphics Corp., called Cre8Ventures, to provide access
to Mentor Graphics EDA software to startups for free.
The software will be hosted at iSLI's Alba Centre campus (Livingston, Scotland) where there is already close collaboration with Scottish Enterprise and The Alba Innovation Centre to provide support services to companies. ISLI is a high-level research institute sponsored by four Scottish universities.
Read in full @ Scots institute to host free EDA tools for startups. |
|||
| Read More... | |||
| [ Back ] | |||
View/Add Comments (4)| Written by SVTechie | |||
| Recently, I was working on a (not so big) module which required use of big registers. While synthesizing this module, DC was taking more than 4 hours of time on certain machine and it was becoming very frustrating. Finally I gave up and decided to investigate and address this issue. Following is the experiment information and possible fixes. Hypothetical Requirements 3 sets of counters are needed to maintain status of various channels (512 channels). Each counter is 12 bit wide and at any given event, 6 counters from a set of counters may be accessed. In verilog, these counters can be declared as followed reg [11:0] A[0:511]; reg [11:0] B[0:511];
reg [11:0] C[0:511]; There is a combinatorial logic reading these counters by providing two index variables - one is 4 bit wide (16) and another is 5 bit wide (32). Index is calculated by concatenating these two variable (16*32 = 512). Read and write code may look like as followed input reg [3:0] index0; input reg [4:0] index1; output wire [11:0] dout; input wire [11:0] din; wire [8:0] index = {index0, index1}; assign dout = A[index]; .... A[index] <= din; ....Ofcourse, there are 6 access paths for each of the counter set. Since this module has lots of flops (3*12*512 = 18K), DC is taking more than 4 hours to synthesize this module.
Solutions to Improve DC runtime
Straight way to reduce combinations is to perform logic partition explicitly. For our example, there is array of 512 registers which are accessed by two index variables. We can simply divide 512 registers in 16 groups, each group accessible by index0. Each group holds 32 registers and is indexed by index1. Declaration for this scenario will look like,
Update: Currently, I have applied above three in my design and able to reduce synthesis time to ~39 minutes. I am still experimenting and will update if anything changes. Meanwhile, suggestions are welcome. |
|||
| Read More... | |||
| [ Back ] | |||
View/Add Comments (1)| Written by SVTechie | |||
| Many IC verification teams use C++, but there are few resources or tools to help them develop verification environments. Two engineers have launched a web site with open-source tools that can help, and they've also co-authored a book on the topic. Mike Mintz, verification engineer with a large systems company that prefers to remain unnamed, developed Teal, a C++ class library that adapts C++ to Verilog and provides threading support. He also created Truss, an applications framework for C++ verification that sits on top of Teal. |
|||
| Read More... | |||
| [ Back ] | |||
View/Add Comments (0)| Written by SVTechie | |||
| Working to support modeling and verification at a higher level of abstraction, Jeda Technologies is adding transaction-level assertion to native SystemC assertion (NSCa), a verification automation tool suite introduced in February.
NSCa is a native SystemC assertion development and debug environment. Its assertion syntax is said to provide a fourfold to tenfold code reduction over writing assertions directly in SystemC. An integrated development environment provides debug, coverage and trace tools, along with editing and make-file creation.
Until now, however, NSCa supported only cycle-level assertions. |
|||
| Read More... | |||
| [ Back ] | |||
View/Add Comments (0)| Written by SVTechie | |||
| Jasper is offering free verification planning tool, GamePlan. Nice huh! I have not yet played with it so can not offer much. However, check it out... they have user forum/discussion board, documentation etc too! |
|||
| Read More... | |||
| [ Back ] | |||
View/Add Comments (2)| Written by SVTechie | |||
| The companys technology is aimed at easing the development of systems based on parallel processors and SIMD support hardware. Under the so-called sieve system parts of the program are marked off with the "sieve" marker and inside these sieve blocks it is simple and safe for the compiler to perform automatic parallelization. The compiler can then provide feedback to the programmer about how the software could be changed to improve parallelism. The sieve system can be used with processors that have non-uniform memory architectures and use DMA, the company said. It can also work with non-uniform data structures as well as the more common streaming applications.
Read @ Scots firm offers aid for multicore development |
|||
| Read More... | |||
| [ Back ] | |||
View/Add Comments (0)Show all blog entries


SVTechie Blog