ggml : add fallback definition for HWCAP2_SVE2 (#17683)
This align with other HWCAP2 feature flags See #17528 Signed-off-by: Adrien Gallouët <angt@huggingface.co>
This commit is contained in:
parent
cee92af553
commit
ab6726eeff
|
|
@ -8,6 +8,10 @@
|
||||||
#include <sys/sysctl.h>
|
#include <sys/sysctl.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if !defined(HWCAP2_SVE2)
|
||||||
|
#define HWCAP2_SVE2 (1 << 1)
|
||||||
|
#endif
|
||||||
|
|
||||||
#if !defined(HWCAP2_I8MM)
|
#if !defined(HWCAP2_I8MM)
|
||||||
#define HWCAP2_I8MM (1 << 13)
|
#define HWCAP2_I8MM (1 << 13)
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue