algorithmica icon indicating copy to clipboard operation
algorithmica copied to clipboard

In its current state, the operation `a[i] += b[i]` expands to `a[i] += a[i+1]`, which is fully parallelizable in incremental order of iteration. With this change, it instead expands to `a[i] += a[i-1]`, which requires sequential execution.

Open sergiovaneg opened this issue 7 months ago • 0 comments

This pull request has been automatically generated by prose.io.

sergiovaneg avatar Jul 02 '25 13:07 sergiovaneg