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 8583552 commit a5ef1d0Copy full SHA for a5ef1d0
ggml/src/ggml-cuda/pad_reflect_1d.cu
@@ -38,7 +38,7 @@ static __global__ void pad_reflect_1d_kernel_f32(
38
float value;
39
const int64_t j = i0 - p0;
40
41
- if ( j<0 ) {// i0<p0
+ if (j < 0) {// i0<p0
42
// Left padding - reflect
43
value = *(const float *)(src0_ptr - j * nb00);
44
} else if ( j < ne00 ) { //i0 < ne0 - p1
0 commit comments