A scalable approach to speeding physical verification
EE Times: Latest News A scalable approach to speeding physical verification | |
Rahul Kapoor, Marilyn Adan, and Louis Schaffer (07/21/2004 6:00 PM EDT) URL: http://www.eetimes.com/showArticle.jhtml?articleID=23904803 | |
Physical verification runtimes and memory usage have exploded with the increasing number of design rules, their subsequent complexity and the size of chips to be verified. While a traditional approach focuses on speeding up code execution through running multiple threads on multi-CPU (and more expensive) machines, a higher price/performance ratio can be achieved through an optimal combination of distributed processing and multi-threading. Such a solution also offers better scalability, benefiting from the current trend towards adopting a network of inexpensive Linux machines. On the other hand, such an approach would have to tackle the issues of data versus command distribution across machines, network latency, ease of setup, and peak memory usage. This article uses real world examples to demonstrate the need for a scalable solution, and provides some sample performance points delivered by such a solution. Physical verification has always been associated with DRC (design rule checking) or LVS (layout versus schematic). While a physical verification tool has many more applications, such as layout post-processing and optical proximity correction, runtime always depends heavily on both the size of the layout to be verified and number of rules to be checked. These two parameters are increasing with every new design. With over 100 million gates at 90nm, and the average number of design rules expected to be upwards of 700 (figure 1) at 90nm, it is no surprise that physical verification runtimes on larger designs may be measured in days (sometimes weeks!) rather than hours. Despite this, designers are frequently requesting an overnight turnaround time (TAT), based on the need to achieve at least one turn every day or see the results after an overnight run. Turnaround concern is accentuated even more because physical verification is run as a last step before sending the layout to the foundry.
Figure 1 — Quadrupling of design checks from 180nm to 90nm
Figure 2 shows how the physical verification task can be thought of as several runset commands running on a layout (full chip or block) producing an error output and a modified layout. To reduce the turnaround time over a single CPU run mode, an optimal processing platform should be able to determine the right combination of runset command, and find the portion of the layout to which the command is applicable. These combinations can be sent to separate CPUs and the results can be reassembled at the end.
Figure 2 — System view of physical verification problem
In practice, two approaches have been used to reduce TAT:
Distributed processing For distributed processing, an advanced scheduler sorts the commands inside a runset and distributes individual commands to separate CPUs. The distribution can be across multiple machines with multiple CPUs, or on a single machine with multiple CPUs. The distribution of individual commands requires that each distributed compute engine (usually a CPU) has the capability to independently process separate commands. As an example of distributed processing, a runset might have separate commands for metal 1 to metal 1 checks and metal 2 to metal 2 checks. Since there is no layer dependency, these checks can be performed independently. As one CPU performs the metal 1 to metal 1 check, another CPU can perform the metal 2 to metal 2 spacing check simultaneously. The throughput of the verification run is increased by almost a factor of two. The memory usage of both commands running together is managed by only loading the relevant layer data. It is rare for both the commands to achieve peak memory usage simultaneously. The first challenge for distributed processing is programming the scheduler to organize commands based on input and output layer dependencies. The information about layer dependence is used to determine when a command will be run. Boolean, spacing, and data preparation commands benefit the most from this layer information. The scheduler also has to track connectivity dependencies to ensure that commands requiring connectivity information are run in the proper order. The second challenge for distributed processing is to eliminate the "pinch points" in the code. Pinch points are the areas of code that artificially prevent commands from being distributed across the CPUs. As an example, many connectivity commands rely on the prior connection of layers in a certain order. This preset connection, or connect database, is used to run one command. The connection can then be enhanced or modified to run another command. Instead of the second command waiting for the first command to finish, the connect database can be automatically replicated by the scheduler across the CPUs so both commands can run in parallel. As an example, the antenna rules for a regular MOS and a high power MOS may be different. However, both devices have the same connectivity through all of the metal layers in the design. A special recognition layer is used to identify the high power MOS device. Otherwise the device layers which create the high power MOS are the same as the regular MOS. Thus, replicating the common connectivity for parallel processing on separate CPUs can eliminate the pinch point. Separate processes (such as TCP/IP) are used to communicate between the different components of a distributed run. This allows distributed runs on multiple machines across a network. Excellent utilization (figure 3a) has been achieved running across a network.
Figure 3a — 90 percent utilization in networked configuration
Distributed processing depends on the scalability of the runset. The more separate and independent sequences of commands, the more benefit extra CPUs can be expected to provide. Connectivity dependency and layer dependency can limit the number of commands that can be run simultaneously. A good rule of thumb is to use as many CPUs as number of metal levels in the runset. Thus, distributed processing can speed up the verification process significantly. Figure 3b shows the 7x speedup using 10 CPUs for a 90nm TSMC runset. Inexpensive Linux based machines were used across a LAN to achieve this scalability.
Figure 3b — 7-fold speedup with distributed processing
Multi-threading Multithreading enables the execution of a single command simultaneously on different pieces of a layout, which increases throughput. The layer data used by a command is cut into multiple regions. These separate regions within a layer can be loaded and processed by separate threads in parallel. As an example, a metal 1 to metal 1 spacing check is multi-threaded between two CPUs. A single image of all of the metal 1 in the design is loaded into machine memory. Each CPU process, or thread, will perform the spacing check on different regions of the metal layer. The memory required is controlled by the number of regions that the layer has been separated into. It is useful to think of multithreading breaking the design into regions. The number of regions can vary by design, and there are typically more regions than the number of CPUs (each CPU runs one thread.) Larger designs will use more regions to allow more multithreading and better memory management. Multiple threads running at the same time handle the work on these regions. If the number of regions is greater than the number of CPUs, then a thread will start work on the next available region after completing work on a region. A shared memory approach can constrain the multi-threading performance. Different threads use shared memory to communicate with each other as commercial implementations actively avoid costly disk access. For small to medium designs, a shared memory approach yields fast processing, but very large designs can cause extensive memory swapping to occur. Combining multi-threading and distributed processing While both multi-threading and distributed processing are currently in use to achieve overnight runtimes for larger 130nm and 90nm designs today, more efficient hardware architectures are evolving to meet the overnight TAT for future designs. An important step in this direction is to recognize that distributed processing and multithreading are complimentary. Distributed processing can be used for servers across a network, while multithreading can be used on multiple CPUs on each server, allowing users to get the most out of lower-cost dual-CPU servers. Thus, two CPU servers can be utilized over the network with two threads each. This combination will take advantage all of four CPUs available. Distributed processing and multithreading may also be run on a single server with multiple CPUs. A 4 CPU server can be effectively utilized by running a 2 CPU distributed run with 2 threads per distributed engine. This will utilize all four CPUs, with the advantages of parallelism both at the runset level and at the command level. As an example of combining distributed processing and multithreading, consider the how metal 1 and metal 2 checks described above could benefit. The first step could be to distribute metal 1 and metal 2 checking commands between two different dual-CPU machines. This is possible because distributed processing can utilize compute resources on different machines. Once distribution is complete, the spacing commands could be multi-threaded between the two different CPUs on each machine. The multi-threading reduces the memory required to execute the single command, while simultaneously boosting performance. This trend to run combined distributed processing and multi-threading also utilizes the trend towards inexpensive Linux clusters. 32 bit Linux servers are cost effective, but are limited by the maximum amount of accessible memory. A future challenge is to control peak memory utilization and optimize distributed processing over the network to take advantage of this low cost solution. Currently, 32 bit Linux servers are limited to medium and small designs, while higher capacity designs are benefiting from 64 bit servers.
Figure 4 — Multi-threading complements distributed processing
Figure 4 shows how multi-threading can provide a substantial speedup after distributed processing gains start leveling off. In the example, two threads were run on each of the six servers, needing 12 CPUs. Summary Designers continue to demand overnight turnaround time, despite a growing number of checks and higher data sizes at 90nm and beyond. To meet the TAT requirement, a physical verification tool can use distributed processing to exploit runset parallelism and multithreading to exploit data parallelism. Using data generated by Synopsys' Physical Verification Solution, Hercules PVS, this paper illustrates how both approaches can be combined to tackle the turnaround challenge for largest chips now and for future processes. Rahul Kapoor joined Synopsys in 2003 as marketing manager for Physical Verification. In that capacity, Mr. Kapoor handles the business development and marketing plans for Synopsys' physical verification products and platforms. Before coming to Synopsys, Mr. Kapoor was a senior design engineer for Intel. Marilyn Adan joined Synopsys in 2002 as technical marketing manager. Her primary role is to ensure that product development is focused to meet customers' current and future needs. Before joining Synopsys, she was a technology manager at Raza Foundries where she ensured partner companies met schedules and performed technical due diligence on potential investments. Louis Schaffer joined Synopsys in 2001 and is currently a corporate applications engineer. In that capacity, he performs benchmarks for a variety of customers. Before joining Synopsys, Mr. Schaffer was in graduate school at Clemson, where he earned his MSEE.
| |
All material on this site Copyright © 2005 CMP Media LLC. All rights reserved. Privacy Statement | Your California Privacy Rights | Terms of Service | |
Related Articles
- A formal-based approach for efficient RISC-V processor verification
- Leveraging UVM based UFS Test Suite approach for Accelerated Functional Verification of JEDEC UFS IP
- IC mixed-mode verification: The Sandwiched-SPICE approach
- The industry needs a renewed approach to verification IP
- Systematic approach to verification of a mixed signal IP - HSIC PHY case study
New Articles
Most Popular
- System Verilog Assertions Simplified
- System Verilog Macro: A Powerful Feature for Design Verification Projects
- Enhancing VLSI Design Efficiency: Tackling Congestion and Shorts with Practical Approaches and PnR Tool (ICC2)
- Synthesis Methodology & Netlist Qualification
- Streamlining SoC Design with IDS-Integrateâ„¢
E-mail This Article | Printer-Friendly Page |