X7ROOT File Manager
Current Path:
/opt/cloudlinux/venv/lib/python3.11/site-packages/numpy/distutils/checks
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
numpy
/
distutils
/
checks
/
ðŸ“
..
📄
cpu_asimd.c
(818 B)
📄
cpu_asimddp.c
(432 B)
📄
cpu_asimdfhm.c
(529 B)
📄
cpu_asimdhp.c
(379 B)
📄
cpu_avx.c
(779 B)
📄
cpu_avx2.c
(749 B)
📄
cpu_avx512_clx.c
(842 B)
📄
cpu_avx512_cnl.c
(948 B)
📄
cpu_avx512_icl.c
(1004 B)
📄
cpu_avx512_knl.c
(956 B)
📄
cpu_avx512_knm.c
(1.11 KB)
📄
cpu_avx512_skx.c
(1010 B)
📄
cpu_avx512_spr.c
(904 B)
📄
cpu_avx512cd.c
(759 B)
📄
cpu_avx512f.c
(755 B)
📄
cpu_f16c.c
(868 B)
📄
cpu_fma3.c
(817 B)
📄
cpu_fma4.c
(301 B)
📄
cpu_neon.c
(600 B)
📄
cpu_neon_fp16.c
(251 B)
📄
cpu_neon_vfpv4.c
(609 B)
📄
cpu_popcnt.c
(1.02 KB)
📄
cpu_sse.c
(686 B)
📄
cpu_sse2.c
(697 B)
📄
cpu_sse3.c
(689 B)
📄
cpu_sse41.c
(675 B)
📄
cpu_sse42.c
(692 B)
📄
cpu_ssse3.c
(705 B)
📄
cpu_vsx.c
(478 B)
📄
cpu_vsx2.c
(263 B)
📄
cpu_vsx3.c
(250 B)
📄
cpu_vsx4.c
(305 B)
📄
cpu_vx.c
(461 B)
📄
cpu_vxe.c
(788 B)
📄
cpu_vxe2.c
(624 B)
📄
cpu_xop.c
(234 B)
📄
extra_avx512bw_mask.c
(636 B)
📄
extra_avx512dq_mask.c
(504 B)
📄
extra_avx512f_reduce.c
(1.56 KB)
📄
extra_vsx4_mma.c
(499 B)
📄
extra_vsx_asm.c
(945 B)
📄
test_flags.c
(16 B)
Editing: cpu_avx512_cnl.c
#if defined(DETECT_FEATURES) && defined(__INTEL_COMPILER) /* * Unlike GCC and CLANG, Intel Compiler exposes all supported intrinsics, * whether or not the build options for those features are specified. * Therefore, we must test #definitions of CPU features when option native/host * is enabled via `--cpu-baseline` or through env var `CFLAGS` otherwise * the test will be broken and leads to enable all possible features. */ #if !defined(__AVX512VBMI__) || !defined(__AVX512IFMA__) #error "HOST/ARCH doesn't support CannonLake AVX512 features" #endif #endif #include <immintrin.h> int main(int argc, char **argv) { __m512i a = _mm512_loadu_si512((const __m512i*)argv[argc-1]); /* IFMA */ a = _mm512_madd52hi_epu64(a, a, _mm512_setzero_si512()); /* VMBI */ a = _mm512_permutex2var_epi8(a, _mm512_setzero_si512(), a); return _mm_cvtsi128_si32(_mm512_castsi512_si128(a)); }
Upload File
Create Folder