Fixed if formatting
This commit is contained in:
parent
5f7326b0c1
commit
8446b617c5
1 changed files with 3 additions and 1 deletions
|
@ -49,7 +49,9 @@ void main() {
|
|||
[[unroll]] for (uint idx = 0; idx < NUM_ITER; ++idx) {
|
||||
|
||||
const uint i = gidx * NUM_ITER + idx;
|
||||
if (i >= p.pelements) continue;
|
||||
if (i >= p.pelements) {
|
||||
continue;
|
||||
}
|
||||
|
||||
const uint kx = i / ksize;
|
||||
const uint ky = (i % ksize) / p.OW;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue