Skip to content

Commit 7e559f3

Browse files
committed
change min blocks per mp to 1
1 parent 75520d6 commit 7e559f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-cuda/ssm-scan.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ using namespace cub;
1010
#include "ssm-scan.cuh"
1111

1212
template <size_t splitD, size_t N, size_t L_template>
13-
__global__ void __launch_bounds__(splitD, 2)
13+
__global__ void __launch_bounds__(splitD, 1)
1414
ssm_scan_f32(const float *__restrict__ src0, const float *__restrict__ src1, const float *__restrict__ src2,
1515
const float *__restrict__ src3, const float *__restrict__ src4, const float *__restrict__ src5,
1616
const int src0_nb1, const int src0_nb2, const int src1_nb1, const int src1_nb2,

0 commit comments

Comments
 (0)