Home

Awesome

CircuitOps

(Notice: This Github repository is currently in the progress of being developed and some files are still missing. We will try to complete it ASAP. Thanks for your patience!)

Introduction

CircuitOps is a data infrastructure to facilitate dataset generation and model deployment in Generative AI (GAI)-based circuit optimization tasks. It mainly has the following contributes:

  1. Shared Intermediate Representation: labeled property graphs (LPGs) backed by relational tables, a flexible way to represent detailed netlist information and suitable for parallel processing;
  2. Tools-agnostic IR generation: parsing standard EDA files and attributes tables to generate LPGs for given netlists, which can be reused for many downstream GAI applications;
  3. Customizable dataset generation: generating a customized dataset for each GAI application by performing on the AI-friendly LPGs;
  4. Inference with gRPC-based data transfer: facilitating the deployment of GAI models into production.

Figure.1 depicts the overview of CircuitOps. Based on the Intermediate Representation of labeled property graphs, CircuitOps consists of two main modules: IR generation and dataset generation. The IR generation module transforms standard EDA files into LPGs that store netlist information and are reused across tasks. The taskspecific dataset is constructed with the dataset generation module using its AI-friendly data structures and interfaces. CircuitOps also provides a gRPC-based data transfer method facilitating inference of GAI models in production deployment.

<img src="etc/CircuitOps-overview.png" alt="Markdown Monster icon" style="float: left; margin-right: 10px;" />

Fig. 1: CircuitOps overview. (a) shows the structure of CircuitOps; (b) illustrates the netlist labeled property graph backed by relational tables.

Getting Started

Download the CircuitOps repository as shown below:

git clone --recursive https://github.com/NVlabs/CircuitOps.git
cd CircuitOps

Install CircuitOps

Dependencies

The following dependencies are needed by CircuitOps. OpenROAD is required for EDA tools file parsing and generating properties.

Install OpenROAD

Refer to the dependencies of the OpenROAD Project and instrcutions here.

We use OpenROAD to read in standard EDA files and generate relational tables as IRs.

TLDR instructions to build OpenROAD is listed below:

cd CircuitOps/src/OpenROAD
mkdir build
cd build
cmake ..
make -j

Install CircuitOps in Bash

From the IRs, CircuitOps uses the relational tables generated from OpenROAD and creates LPGs and datasets. Installation of Python scripts of Circuit ops in described below through a virtual environment and pip. From the CircuitOps top level directory run the following commands:

python3 -m venv circuitops
source circuitops/bin/activate
pip3 install -r requirements.txt

Use CircuitOps

Generate IRs from OpenROAD using TCL

Set design and platform

Modify set_design.tcl to name the design and platform. If you need to add more designs, add them to the designs directory and modify the set_design.tcl file appropriately.

Also modify the fixed_load_cell in set_design.tcl, which provides the type of cell that should be used to calculate the fixed load delay for cells.

Run OpenROAD and TCL scripts to generate relational tables

The following command to generate the relations tables in the ./IRs/ directory.

./path/to/binary/openroad ./src/tcl/generate_tables.tcl

Generate IRs from OpenROAD using Python

Run the following command to generate the relations tables in the ./IRs/ directory.

./path/to/binary/openroad -python ./src/python/generate_tables.py -w 1 -d <design_name>  -t <tech_node>

Arguments of python script:
-w --> [0 | 1] Store IR tables into csv files. Default: 0
-d --> To provide the design name for which IR table should be generated. Default: "gcd"
-t --> To provide the technology node. Default: "nangate45"

Sample IR tables

There are IR tables available for a number of designs in Nangate45, asap7 and sky130hd tech nodes in this git repo. This can be used by engineers for ML applications.

The list of designs available are given in the table below along with post filler instance count and runtime to generate IR tables using python script for these designs.

TechnodeDesign# of instancesIR generation runtime (mins)Core utilisation
asap7gcd13870.15Default ORFS
asap7uart16790.20Default ORFS
asap7mock-array_Element79940.60Default ORFS
asap7ibex4823742.14Default ORFS
asap7NV_NVDLA_partition_m6535328.7830
asap7NV_NVDLA_partition_a111207104.0430
asap7jpeg169095197.99Default ORFS
asap7NV_NVDLA_partition_p215140305.5530
asap7NV_NVDLA_partition_c4995811755.3130
nangate45gcd7520.11Default ORFS
nangate45aes3020220.78Default ORFS
nangate45ibex3211123.44Default ORFS
nangate45bp_fe9615059.80Default ORFS
nangate45bp_be141468129.14Default ORFS
nangate45jpeg141651248.85Default ORFS
nangate45swerv193054608.56Default ORFS
sky130hdgcd11810.21Default ORFS
sky130hdriscv32i201047.41Default ORFS
sky130hdibex4248732.68Default ORFS
sky130hdaes6438917.27Default ORFS
sky130hdjpeg140975178.49Default ORFS

Generate Datasets

cd src/python

python BT_sampling_OpenROAD.py ../../IRs/nangate45/gcd/ ../../datasets/

gRPC-based Data Transfer

Cite this work