We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, a recent change breaks the build for ARMv7-32 bit (e.g. RPI2, or RPI3-32bit). This is what I set for cmake
set(CMAKE_SYSTEM_PROCESSOR armv7)
FAILED: ... -c ../../src/qs8-gemm/gen/8x8c4-minmax-neondot.c arm-linux-gnueabihf-gcc: error: unrecognized argument in option '-march=armv8.2-a+dotprod'
I think the XNNPACK_NEONDOT_MICROKERNEL_SRCS should be limited to if user specify dotprod modifier in the CMAKE_SYSTEM_PROCESSOR E.g.
dotprod
CMAKE_SYSTEM_PROCESSOR
set(CMAKE_SYSTEM_PROCESSOR armv8.2-a+dotprod)
The text was updated successfully, but these errors were encountered:
Fixed in 7359463
Sorry, something went wrong.
No branches or pull requests
Hi, a recent change breaks the build for ARMv7-32 bit (e.g. RPI2, or RPI3-32bit). This is what I set for cmake
I think the XNNPACK_NEONDOT_MICROKERNEL_SRCS should be limited to if user specify
dotprod
modifier in theCMAKE_SYSTEM_PROCESSOR
E.g.The text was updated successfully, but these errors were encountered: