Skip to content

Commit 9715996

Browse files
authored
fix: neon now compiles (#1313)
1 parent d45f87e commit 9715996

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/dpp/isa/neon.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ namespace dpp {
5656
neon_float gain_vector = vdupq_n_f32(current_gain);
5757
static constexpr float data[4] = { 0.0f, 1.0f, 2.0f, 3.0f };
5858
neon_float floats = vld1q_f32(data);
59-
neon_float increment_vector = vmulq_f32(vdupq_n_f32(increment), floats));
59+
neon_float increment_vector = vmulq_f32(vdupq_n_f32(increment), floats);
6060
neon_float current_samples_new = vmulq_f32(gathered_values, vaddq_f32(gain_vector, increment_vector));
6161

6262
// Clamping the values between int16_t min and max

0 commit comments

Comments
 (0)