Actions
Bug #9275
openvcegar/pj_icram: too big arrays
Start date:
09/11/2018
Due date:
% Done:
0%
Estimated time:
Detected in build:
master
Platform:
Published in build:
Description
vcegar/pj_icram designs icram_3.v
, icram_4.v
and icram_5.v
contain too big arrays that nuXmv
model checker can't handle:
`define ic_size 2047 // icram_3.v
`define ic_size 4093 // icram_4.v
`define ic_size 8191 // icram_5.v
...
reg [7:0] ic_ram [`ic_size:0];
Moreover, Retrascope's cgaa-hldd-transformer engine can't handle
icram_4.v
and icram_5.v
(needs too much memory and time to build HLDDs).These designs will be temporarily excluded from the HLDD-based tests.
Updated by Sergey Smolov about 6 years ago
This problem can be reproduced by un-abstracting ru.ispras.retrascope.engine.hldd.printer.smv.sample.vcegar.VcegarPjIcram4HlddSmvPrinterTestCase test case.
Updated by Sergey Smolov about 6 years ago
The test returns error and it is not abstract. The similar test is added for vcegar/pj_icram/icram_5.v
Actions