We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f7326b commit 8446b61Copy full SHA for 8446b61
ggml/src/ggml-vulkan/vulkan-shaders/im2col.comp
@@ -49,7 +49,9 @@ void main() {
49
[[unroll]] for (uint idx = 0; idx < NUM_ITER; ++idx) {
50
51
const uint i = gidx * NUM_ITER + idx;
52
- if (i >= p.pelements) continue;
+ if (i >= p.pelements) {
53
+ continue;
54
+ }
55
56
const uint kx = i / ksize;
57
const uint ky = (i % ksize) / p.OW;
0 commit comments