force pipeline stages in for loops #236
suarezvictor
started this conversation in
General
Replies: 2 comments
-
Sounding very familiar with Vitis HLS style stuff:
for (int i = 0; i < size; i++) {
#pragma HLS PIPELINE II=1
out = in + inc;
} |
Beta Was this translation helpful? Give feedback.
0 replies
-
Also reminded of #97 Where by specifying a number of loops and pragma pipeline = "~each loop iteration is pipelined" - you are almost specifying the number of pipeline stages to use directly... |
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
-
It seems that in a foor loop, amount of stages for each iteration ca be fractional, it would be good to force at least one for iteration
Beta Was this translation helpful? Give feedback.
All reactions