質問

I am using Synopsys Design Compiler(SDC) for synthesis with compile_ultra. This option does advanced datapath extraction which basically tries to group(or chain) together as many arithmetic operations as possible and then uses carry-save arithmetic in order to efficiently implement this chain of operations. This is described in SDC user guide. The optimization supposedly leaves behind a description of the extracted datapath in binary files. I am pointing out these in the following screenshot. Is there a way to see what these files contain and figure out what datapath was finally produced by SDC ?

add_304_64_DP_OP_283_2056 is the name of the extracted datapath(as shown in the report_resources output at the beginning of the image). The corresponding had_unwound8_add_304_64_DP_OP_283_2056_0.a.e and had_unwound8_add_304_64_DP_OP_283_2056_0.b.e files are dumped by SDC.

Screenshot

Note: Cross posted from electronics stackexchange since it did not find enough purchase there.

役に立ちましたか?

解決

The files contained in dwsvf folder (*.a.e and *.b.e) are produced for downstream tools for Equivalence Checking(EC) such as Fomality. THe format of these files are open source standard provided by Synopsys and is named V-SDC. Those files are intended to provide information about the generated datapaths to EC tools in order to speedup the EC process.

In order to view the details of the datapaths generated, report_resources command can be used in DC.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top