Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates to Fix Linux ARM32/ARM64 CI #18575

Merged
merged 9 commits into from
Nov 23, 2023
Prev Previous commit
Next Next commit
minor patch for NEON helpers on ARM
for #18353
  • Loading branch information
theofficialgman committed Nov 18, 2023
commit b1e74b85231748467f8987ba7766d1b7ca252cc1
5 changes: 4 additions & 1 deletion src/framework/audio/internal/fx/reverb/simdtypes_neon.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,15 @@ struct float_x4
s.n128_f32[1] = v1;
s.n128_f32[2] = v2;
s.n128_f32[3] = v3;
#elif defined(__GNUC__) // gcc (12.2.0) doesn't seem to allow initializer list.
const float init[4] = { v0, v1, v2, v3 };
s = vld1q_f32(init);
#else
s = { v0, v1, v2, v3 };
#endif
}

#if __clang__
#if defined(__clang__) || defined(__GNUC__)
private:
// this helper class allows writing to the single registers for clang
// __mm128 is a built-in type -> we can't return a float& reference.
Expand Down