You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here's a refined GitHub issue description with clearer output formatting and explicit error context:
Description
Cross-compiling for Android ARMv7 (armeabi-v7a) fails with missing NEON FP16 intrinsics despite proper toolchain configuration. The errors occur specifically in sgemm.cpp when using NDK r26b's Clang 17 compiler.
Git commit
b4623
Here's a refined GitHub issue description with clearer output formatting and explicit error context:
Description
Cross-compiling for Android ARMv7 (
armeabi-v7a
) fails with missing NEON FP16 intrinsics despite proper toolchain configuration. The errors occur specifically insgemm.cpp
when using NDK r26b's Clang 17 compiler.Environment
Steps to Reproduce
Observed Errors
Expected Behavior
Successful compilation of NEON-accelerated FP16 code paths for ARMv7 targets.
Diagnostic Evidence
Compiler Feature Check:
Indicates compiler doesn't recognize ARMv7 FP16 extensions despite
-mfpu=neon-fp16
.Architecture Validation:
Confirms ARMv7+NEON target configuration.
Header Dependency:
Missing
#include <arm_neon.h>
in files using NEON intrinsics.Workarounds Attempted
#include <arm_neon.h>
-D__ARM_FEATURE_FP16_VECTOR_ARITHMETIC=1
Reproduction Rate
Request:
Guidance on either:
The text was updated successfully, but these errors were encountered: