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
{{ message }}
This repository has been archived by the owner on Apr 2, 2021. It is now read-only.
cpuid.h is included if not on Windows or ARM, but it doesn't appear to exist on ppc64(le)/s390x either. Compile fails on ppc64, ppc64le, and s390x because the header cannot be found (note this build is for pyfastnoisesimd, but the problem is here.)
I don't know much about this arch, so I don't know what can be used to replace cpuid.
The text was updated successfully, but these errors were encountered:
The architectures you listed do not support SSE/AVX I know there is some form of SIMD for power PC but I don't think I will have time to add support for it any time soon.
Hmm, no need to go through too much trouble; I'd be happy if I could compile with the fallback only (maybe I just need to disable them and leave it at that.)
Bit confused that ppc64 is listed here though?
// SSE2/NEON support is guaranteed on 64bit CPUs so no fallback is needed
#if !(defined(_WIN64) || defined(__x86_64__) || defined(__ppc64__) || defined(__aarch64__) || defined(FN_IOS)) || defined(_DEBUG)
#defineFN_COMPILE_NO_SIMD_FALLBACK
#endif
cpuid.h
is included if not on Windows or ARM, but it doesn't appear to exist on ppc64(le)/s390x either. Compile fails on ppc64, ppc64le, and s390x because the header cannot be found (note this build is for pyfastnoisesimd, but the problem is here.)I don't know much about this arch, so I don't know what can be used to replace cpuid.
The text was updated successfully, but these errors were encountered: