Skip to content

Commit a69591a

Browse files
committed
opencl: fix whitespace
1 parent b742329 commit a69591a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ggml/src/ggml-opencl/kernels/mul_mv_id_mxfp4_f32_flat.cl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ kernel void kernel_mul_mv_id_mxfp4_f32_flat(
153153
half4 fp16x4_1 = mxfp4_to_fp16_packed(xb_q.s1);
154154
float4 acc1 = y4[0] * (float4)(fp16x4_0.s0, fp16x4_0.s2, fp16x4_1.s0, fp16x4_1.s2);
155155
acc1 += y4[4] * (float4)(fp16x4_0.s1, fp16x4_0.s3, fp16x4_1.s1, fp16x4_1.s3);
156-
156+
157157
fp16x4_0 = mxfp4_to_fp16_packed(xb_q.s2);
158158
fp16x4_1 = mxfp4_to_fp16_packed(xb_q.s3);
159159
acc1 += y4[1] * (float4)(fp16x4_0.s0, fp16x4_0.s2, fp16x4_1.s0, fp16x4_1.s2);

ggml/src/ggml-opencl/kernels/mul_mv_mxfp4_f32_flat.cl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ kernel void kernel_mul_mv_mxfp4_f32_flat(
144144
half4 fp16x4_1 = mxfp4_to_fp16_packed(xb_q.s1);
145145
float4 acc1 = y4[0] * (float4)(fp16x4_0.s0, fp16x4_0.s2, fp16x4_1.s0, fp16x4_1.s2);
146146
acc1 += y4[4] * (float4)(fp16x4_0.s1, fp16x4_0.s3, fp16x4_1.s1, fp16x4_1.s3);
147-
147+
148148
fp16x4_0 = mxfp4_to_fp16_packed(xb_q.s2);
149149
fp16x4_1 = mxfp4_to_fp16_packed(xb_q.s3);
150150
acc1 += y4[1] * (float4)(fp16x4_0.s0, fp16x4_0.s2, fp16x4_1.s0, fp16x4_1.s2);

0 commit comments

Comments
 (0)