comb-localize
: Inlining combinational continuous assignments into groups
#870
Labels
comb-localize
: Inlining combinational continuous assignments into groups
#870
In similar spirit to #869. Inline combinational continuous assignments into the groups that use them (along with the entire dataflow graph that drives them). By doing this kind of inlining, we can hopefully eliminate continuous assignments and speed up/simplify simulation because it has to consider fewer active assignments at any given time.
The following program continuously assigns to the
add.left
signal but only uses the value ofadd.out
in groupg
:We can localize the combinational dataflow graph for
add.out
to the groups that use it:The text was updated successfully, but these errors were encountered: