-
Notifications
You must be signed in to change notification settings - Fork 136
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
QuEST/CMakeLists.txt broken on arm #389
Comments
Hi there, The assumptive AVX flag was raised in #259 and forgotten about (hehe). QuEST's cmake build is due to be remade, given it was originally a bit rushedly created from an existing GNUmake build, causing some very minor issues since. The carefully remade cmake build will ensure all flags are arch compatible. Relatedly, we don't invoke any explicit AVX instructions; we just encourage auto-vectorising. I'm still unsure myself whether flags |
Does AVX get flagged on non x86 arch? |
@fieldofnodes the current CMake build erroneously includes the ARX flag for non-x86 arches, as the OP reports. One can simply delete the flag from the CMake file for a workaround. |
Noting we'll address this in #402 |
arm does not have avx.
This is a crude workaround for gnu:
and build with e.g.
The text was updated successfully, but these errors were encountered: