Skip to content

Commit f79bd92

Browse files
committed
Fix "Error 991-D: extra braces are nonstandard" during compilation
1 parent af6465a commit f79bd92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ggml/src/ggml-cuda/mmvq.cu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ static __global__ void mul_mat_vec_q(
190190

191191
const uint32_t channel_bias = ids ? channel_x : channel_dst;
192192

193-
float x_biases[ncols_dst] = { { 0.0f } };
194-
float gate_biases[ncols_dst] = { { 0.0f } };
193+
float x_biases[ncols_dst] = { 0.0f };
194+
float gate_biases[ncols_dst] = { 0.0f };
195195
if constexpr (has_fusion) {
196196
if (use_bias) {
197197
x_bias = x_bias + sample_dst*stride_sample_dst + channel_bias*stride_channel_dst + row0;

0 commit comments

Comments
 (0)