Sign in
android
/
toolchain
/
llvm-project
/
refs/heads/mirror-goog-main-rust-toolchain-source
/
.
/
libclc
/
r600
/
lib
/
math
/
native_rsqrt.cl
blob: 78871f3823a519c0f72e0240e872f9cc4a5aee57 [
file
] [
log
] [
blame
] [
edit
]
#
include
<
clc
/
clc
.
h
>
#
include
<
clc
/
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
)
;