splitnets -driver
not behaving as expected.
#4299
Answered
by
nakengelhardt
thiskappaisgrey
asked this question in
Q&A
-
When I load this file into yosys and run this script:
I expect that the piecewise assignments, e.g.:
go away, but they don't. I'm I misunderstanding what the pass should do? Or I'm I misusing the pass? @gussmith23 (I'm collaborating with him) @jix |
Beta Was this translation helpful? Give feedback.
Answered by
nakengelhardt
Mar 27, 2024
Replies: 1 comment 2 replies
-
For a little context: I spoke with @jix about this; they suggested
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Those wires are both undriven and unused, just run
clean
to get rid of them.splitnets -driver
says "split nets so that no driver drives only part of a net" so it won't do anything to undriven wires.splice
says "selected output wires and all cell ports of selected cells driven by selected wires are rewired" so that doesn't affect unused wires.