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 9494833 commit 8583552Copy full SHA for 8583552
ggml/src/ggml-cuda/pad_reflect_1d.cu
@@ -28,7 +28,7 @@ static __global__ void pad_reflect_1d_kernel_f32(
28
const int64_t tile0 = div_mod_packed.x; // nth i0 tile
29
const int64_t i1 = tile1;
30
const int64_t i0 = threadIdx.x + tile0 * blockDim.x;
31
- if ( i0 >= ne0 || i1 >= ne01 || i2 >= ne02 || i3 >= ne03 ) {
+ if (i0 >= ne0 || i1 >= ne01 || i2 >= ne02 || i3 >= ne03) {
32
return;
33
}
34
0 commit comments