Current Path: > > opt > cloudlinux > venv > lib > python3.11 > site-packages > > numpy > distutils > > > checks
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
cpu_asimd.c | File | 818 bytes | April 17 2025 13:10:58. | |
cpu_asimddp.c | File | 432 bytes | April 17 2025 13:10:58. | |
cpu_asimdfhm.c | File | 529 bytes | April 17 2025 13:10:58. | |
cpu_asimdhp.c | File | 379 bytes | April 17 2025 13:10:58. | |
cpu_avx.c | File | 779 bytes | April 17 2025 13:10:58. | |
cpu_avx2.c | File | 749 bytes | April 17 2025 13:10:58. | |
cpu_avx512_clx.c | File | 842 bytes | April 17 2025 13:10:58. | |
cpu_avx512_cnl.c | File | 948 bytes | April 17 2025 13:10:58. | |
cpu_avx512_icl.c | File | 1004 bytes | April 17 2025 13:10:58. | |
cpu_avx512_knl.c | File | 956 bytes | April 17 2025 13:10:58. | |
cpu_avx512_knm.c | File | 1132 bytes | April 17 2025 13:10:58. | |
cpu_avx512_skx.c | File | 1010 bytes | April 17 2025 13:10:58. | |
cpu_avx512_spr.c | File | 904 bytes | April 17 2025 13:10:58. | |
cpu_avx512cd.c | File | 759 bytes | April 17 2025 13:10:58. | |
cpu_avx512f.c | File | 755 bytes | April 17 2025 13:10:58. | |
cpu_f16c.c | File | 868 bytes | April 17 2025 13:10:58. | |
cpu_fma3.c | File | 817 bytes | April 17 2025 13:10:58. | |
cpu_fma4.c | File | 301 bytes | April 17 2025 13:10:58. | |
cpu_neon.c | File | 600 bytes | April 17 2025 13:10:58. | |
cpu_neon_fp16.c | File | 251 bytes | April 17 2025 13:10:58. | |
cpu_neon_vfpv4.c | File | 609 bytes | April 17 2025 13:10:58. | |
cpu_popcnt.c | File | 1049 bytes | April 17 2025 13:10:58. | |
cpu_sse.c | File | 686 bytes | April 17 2025 13:10:58. | |
cpu_sse2.c | File | 697 bytes | April 17 2025 13:10:58. | |
cpu_sse3.c | File | 689 bytes | April 17 2025 13:10:58. | |
cpu_sse41.c | File | 675 bytes | April 17 2025 13:10:58. | |
cpu_sse42.c | File | 692 bytes | April 17 2025 13:10:58. | |
cpu_ssse3.c | File | 705 bytes | April 17 2025 13:10:58. | |
cpu_vsx.c | File | 478 bytes | April 17 2025 13:10:58. | |
cpu_vsx2.c | File | 263 bytes | April 17 2025 13:10:58. | |
cpu_vsx3.c | File | 250 bytes | April 17 2025 13:10:58. | |
cpu_vsx4.c | File | 305 bytes | April 17 2025 13:10:58. | |
cpu_vx.c | File | 461 bytes | April 17 2025 13:10:58. | |
cpu_vxe.c | File | 788 bytes | April 17 2025 13:10:58. | |
cpu_vxe2.c | File | 624 bytes | April 17 2025 13:10:58. | |
cpu_xop.c | File | 234 bytes | April 17 2025 13:10:58. | |
extra_avx512bw_mask.c | File | 636 bytes | April 17 2025 13:10:58. | |
extra_avx512dq_mask.c | File | 504 bytes | April 17 2025 13:10:58. | |
extra_avx512f_reduce.c | File | 1595 bytes | April 17 2025 13:10:58. | |
extra_vsx4_mma.c | File | 499 bytes | April 17 2025 13:10:58. | |
extra_vsx_asm.c | File | 945 bytes | April 17 2025 13:10:58. | |
test_flags.c | File | 16 bytes | April 17 2025 13:10:58. |
/** * Testing ASM VSX register number fixer '%x<n>' * * old versions of CLANG doesn't support %x<n> in the inline asm template * which fixes register number when using any of the register constraints wa, wd, wf. * * xref: * - https://bugs.llvm.org/show_bug.cgi?id=31837 * - https://gcc.gnu.org/onlinedocs/gcc/Machine-Constraints.html */ #ifndef __VSX__ #error "VSX is not supported" #endif #include <altivec.h> #if (defined(__GNUC__) && !defined(vec_xl)) || (defined(__clang__) && !defined(__IBMC__)) #define vsx_ld vec_vsx_ld #define vsx_st vec_vsx_st #else #define vsx_ld vec_xl #define vsx_st vec_xst #endif int main(void) { float z4[] = {0, 0, 0, 0}; signed int zout[] = {0, 0, 0, 0}; __vector float vz4 = vsx_ld(0, z4); __vector signed int asm_ret = vsx_ld(0, zout); __asm__ ("xvcvspsxws %x0,%x1" : "=wa" (vz4) : "wa" (asm_ret)); vsx_st(asm_ret, 0, zout); return zout[0]; }
SILENT KILLER Tool