Skip to content

Commit 34562b0

Browse files
committed
change style
1 parent 5af3757 commit 34562b0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ggml-opencl.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -653,16 +653,16 @@ __kernel void dequantize_mul_mat_vec_q6_K(__global const struct block_q6_K * xx,
653653
const int im = tid/step; // 0 or 1. 0 computes 0..., 1 computes 128...
654654
const int in = tid - step*im; // 0...15 or 0...7
655655

656-
\n#if K_QUANTS_PER_ITERATION == 1 \n
656+
\n#if K_QUANTS_PER_ITERATION == 1\n
657657
const int l0 = K_QUANTS_PER_ITERATION*in; // 0...15
658658
const int is = 0;
659659

660-
\n#else \n
660+
\n#else\n
661661

662662
const int l0 = 4 * in; // 0, 4, 8, ..., 28
663-
const int is = in / 4; \n
663+
const int is = in / 4;
664664

665-
\n#endif \n
665+
\n#endif\n
666666

667667
const int ql_offset = 64*im + l0;
668668
const int qh_offset = 32*im + l0;

0 commit comments

Comments
 (0)