HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //usr/local/lib/python3.10/dist-packages/numpy/distutils/checks/cpu_neon_fp16.c
#ifdef _MSC_VER
    #include <Intrin.h>
#endif
#include <arm_neon.h>

int main(int argc, char **argv)
{
    short *src = (short*)argv[argc-1];
    float32x4_t v_z4 = vcvt_f32_f16((float16x4_t)vld1_s16(src));
    return (int)vgetq_lane_f32(v_z4, 0);
}