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
There are cases where you want a loop to be unrolled regardless of cost (eg. to avoid allocation on an array in performance-sensitive functions.) Such cases may not warrant increasing -D loop_unroll_max_cost for the whole project.
Something like @:unroll or @:forceUnroll before a loop that guarantees unrolling or an error otherwise would help in these cases.
The text was updated successfully, but these errors were encountered:
There are cases where you want a loop to be unrolled regardless of cost (eg. to avoid allocation on an array in performance-sensitive functions.) Such cases may not warrant increasing
-D loop_unroll_max_cost
for the whole project.Something like
@:unroll
or@:forceUnroll
before a loop that guarantees unrolling or an error otherwise would help in these cases.The text was updated successfully, but these errors were encountered: