native_rsqrt.cl 242 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 #include <clc/clc.h> #include "../../../generic/lib/clcmacro.h" _CLC_OVERLOAD _CLC_DEF float native_rsqrt(float x) { return __builtin_r600_recipsqrt_ieeef(x); } _CLC_UNARY_VECTORIZE(_CLC_OVERLOAD _CLC_DEF, float, native_rsqrt, float);