Skip to content

In its current state, the operation `a[i] += b[i]` expands to `a[i] +…

23b7370
Select commit
Loading
Failed to load commit list.
Open

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. #353

In its current state, the operation `a[i] += b[i]` expands to `a[i] +…
23b7370
Select commit
Loading
Failed to load commit list.