Skip to content

Commit 0986c2f

Browse files
Shorter dequantize_mul_mat_vec line
1 parent f0af475 commit 0986c2f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ggml-cuda.cu

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,8 @@ static __global__ void dequantize_block_q8_0(const void * vx, float * y) {
206206
}
207207
}
208208

209-
template <int block_size, int qk, dequantize_kernel_t dequantize_kernel> static __global__ void dequantize_mul_mat_vec(const void * vx, const float * y, float * dst, const int ncols) {
209+
template <int block_size, int qk, dequantize_kernel_t dequantize_kernel>
210+
static __global__ void dequantize_mul_mat_vec(const void * vx, const float * y, float * dst, const int ncols) {
210211
const int row = blockIdx.x;
211212
const int tid = threadIdx.x;
212213

0 commit comments

Comments
 (0)