[RISCV] Add RVVConstraint to SiFive custom matrix multiply instructions. (#124055)
[llvm-project.git] / libclc / r600 / lib / math / native_rsqrt.cl
blob78871f3823a519c0f72e0240e872f9cc4a5aee57
1 #include <clc/clc.h>
2 #include <clc/clcmacro.h>
4 _CLC_OVERLOAD _CLC_DEF float native_rsqrt(float x)
6 return __builtin_r600_recipsqrt_ieeef(x);
9 _CLC_UNARY_VECTORIZE(_CLC_OVERLOAD _CLC_DEF, float, native_rsqrt, float);