Replies: 2 comments
-
Not an answer, but possibly related; I have a pending |
Beta Was this translation helpful? Give feedback.
0 replies
-
For connections LHS is the target net and RHS is the source net. In that light the expansion code reads correct to me. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I’m looking for clarification on the behavior of the
select
command in Yosys, specifically when using output mode ('o'). I noticed that in the implementation of theselect_op_expand function
, the selection seems to expand from right to left, which appears counterintuitive for 'o' mode, where I expected the selection to expand from left (input) to right (output).Here is the relevant code block in question:
yosys/passes/cmds/select.cc
Lines 458 to 459 in 38dae1d
Shouldn’t this logic instead expand from left to right in 'o' mode, like this?
Could someone confirm if this is the intended behavior in 'o' mode, or if the code should indeed expand from left to right in this case? Any clarification or corrections would be greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions