Skip to content

Commit

Permalink
Fix using NEON intrinsics when AUTOVECTORIZE is set
Browse files Browse the repository at this point in the history
  • Loading branch information
stellar-aria authored Oct 21, 2024
1 parent 4699812 commit a53114f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/SVMFunctions/arm_svm_polynomial_predict_f32.c
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ ARM_DSP_ATTRIBUTE void arm_svm_polynomial_predict_f32(
}

#else
#if defined(ARM_MATH_NEON)
#if defined(ARM_MATH_NEON) && !defined(ARM_MATH_AUTOVECTORIZE)
ARM_DSP_ATTRIBUTE void arm_svm_polynomial_predict_f32(
const arm_svm_polynomial_instance_f32 *S,
const float32_t * in,
Expand Down

0 comments on commit a53114f

Please sign in to comment.