We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81c8ace commit 96164e6Copy full SHA for 96164e6
ggml/src/ggml-cpu/ops.cpp
@@ -7656,7 +7656,7 @@ static void ggml_compute_forward_ssm_scan_f32(
7656
svfloat32_t vdt_soft_plus = GGML_F32_VEC_SET1(dt_soft_plus);
7657
svfloat32_t r1_vector = GGML_F32_VEC_ZERO;
7658
7659
- for(int64_t k = 0; k < nc; k += svcntw()) {
+ for (int64_t k = 0; k < nc; k += svcntw()) {
7660
svfloat32_t vA = GGML_F32_VEC_LOAD(&A[i1*nc + k]);
7661
svfloat32_t vB = GGML_F32_VEC_LOAD(&B[k]);
7662
svfloat32_t vC = GGML_F32_VEC_LOAD(&C[k]);
0 commit comments