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 35f6369 commit 293edefCopy full SHA for 293edef
ggml/src/ggml-vulkan/vulkan-shaders/im2col.comp
@@ -68,8 +68,8 @@ void main() {
68
continue;
69
}
70
71
- const int iiw = int(current_ix) * p.s0 + int(current_kx) * p.d0 - p.p0;
72
- const int iih = oh_s1 + int(current_ky) * p.d1 - p.p1;
+ const uint iiw = int(current_ix) * p.s0 + int(current_kx) * p.d0 - p.p0;
+ const uint iih = oh_s1 + int(current_ky) * p.d1 - p.p1;
73
74
offset_dst[idx] = dst_base + current_ix * p.CHW + current_ky * p.KW + current_kx;
75
0 commit comments