You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the LEC checks are enabled using LEC_ENABLE, there are 2 instances of equivalence that cannot be proven after Running Global Routing Resizer Timing Optimizations. Note that these checks are not required, and only being done as a supplemental check.
The two instances are:
Trying to prove $equiv cell $auto$equiv_make.cc:369:find_same_cells$81699:
A = \_40836_.B, B = \i_core.i_imem_obi_driver.PS, Y = \_41296_.B
Adding 6631 new cells to the problem (6631 A, 2 B, 2 shared).
Problem size at t=10: 30356 literals, 76474 clauses
Failed to prove equivalence with sequence length 0.
No nets to continue in previous time step.
Trying to prove $equiv cell $auto$equiv_make.cc:369:find_same_cells$81701:
A = \i_core.i_imem_obi_driver.PS, B = \_40836_.B, Y = \_41296_.A
Adding 6631 new cells to the problem (2 A, 6631 B, 2 shared).
Problem size at t=10: 30356 literals, 76474 clauses
Failed to prove equivalence with sequence length 0.
No nets to continue in previous time step.
i_core.i_imem_obi_driver.PS is the present state value for a Mealy-type FSM. There are two instances of this FSM, i_imem_obi_driver and i_dmem_obi_driver. Only the former is failing logical equivalence checking, and the only significant difference between the instances is that two of the ports are tied to constant values:
If the LEC checks are enabled using
LEC_ENABLE
, there are 2 instances of equivalence that cannot be proven afterRunning Global Routing Resizer Timing Optimizations
. Note that these checks are not required, and only being done as a supplemental check.The two instances are:
i_core.i_imem_obi_driver.PS
is the present state value for a Mealy-type FSM. There are two instances of this FSM,i_imem_obi_driver
andi_dmem_obi_driver
. Only the former is failing logical equivalence checking, and the only significant difference between the instances is that two of the ports are tied to constant values:A manual review of the FSM definition in obi_req_driver did not identify any problems that might cause ambiguity in the implementation.
The text was updated successfully, but these errors were encountered: