Skip to content

Commit 21c16fa

Browse files
committed
fix trailing whitespace
1 parent 1928967 commit 21c16fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ggml/src/ggml-cuda/ssm_conv.cu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ static __global__ void ssm_conv_f32(
2424
const int ir0 = dr * ith;
2525
const int ir1 = min(ir0 + dr, nr);
2626
const int ir = ir1 - ir0;
27-
27+
2828
// {d_conv - 1 + n_t, d_inner, n_seqs}
2929
// sliding window
3030
const float * s = (const float *) ((const char *) src0 + ir0*src0_nb1 + i2*src0_nb0 + i3*src0_nb2); // {d_conv, d_inner, n_s}
@@ -54,7 +54,7 @@ static void ssm_conv_f32_cuda(
5454
cudaStream_t stream) {
5555

5656
const dim3 block_dims(WARP_SIZE, n_s, 1);
57-
const int nblocks = n_t;
57+
const int nblocks = n_t;
5858
printf("size is %d\n",nr);
5959
ssm_conv_f32<WARP_SIZE><<<nblocks, block_dims, 0, stream>>>(
6060
src0, src1,

0 commit comments

Comments
 (0)