Skip to content

Commit 5cd9e35

Browse files
committed
Resolve test errors-2
1 parent b4ab67c commit 5cd9e35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-cpu/vec.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ inline static void ggml_vec_scale_f32(const int n, float * y, const float v) {
311311
#if defined(GGML_USE_ACCELERATE)
312312
vDSP_vsmul(y, 1, &v, y, 1, n);
313313
#elif defined(GGML_SIMD)
314-
#if defined(__ARM_FEATURE_SVE)
314+
#if defined(__ARM_FEATURE_SVE)
315315
const int sve_register_length = ggml_cpu_get_sve_cnt() * 8;
316316
const int ggml_f32_epr = sve_register_length / 32;//8;//svcntw(); // SVE128:4, SVE256:8, SVE512:16
317317
const int ggml_f32_step = 2 * ggml_f32_epr;

0 commit comments

Comments
 (0)