Skip to content

Commit 96e2320

Browse files
Update ggml/src/ggml-cuda/ggml-cuda.cu
Co-authored-by: Johannes Gäßler <[email protected]>
1 parent e707662 commit 96e2320

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ggml/src/ggml-cuda/ggml-cuda.cu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1957,8 +1957,8 @@ static void ggml_cuda_mul_mat_batched_cublas_impl(ggml_backend_cuda_context & ct
19571957

19581958
size_t src1_stride_size = sizeof(cuda_t);
19591959

1960-
const int threads_x = 32;
1961-
const int threads_y = 32;
1960+
const int threads_x = 16;
1961+
const int threads_y = 16;
19621962
dim3 block_dims(threads_x, threads_y);
19631963

19641964
dim3 grid_dims(

0 commit comments

Comments
 (0)