Sign in
llvm
/
llvm-project
/
3e32f827e2647b6fa8022cbc76eac384b3c4e2b4
/
.
/
libclc
/
generic
/
lib
/
math
/
native_rsqrt.inc
blob: f108145015b1e421319a8da00712fc6c799919bb [
file
] [
log
] [
blame
]
Jan Vesely
a6758c9
2017-11-13 18:28:51 +0000
[
diff
] [
blame
]
1
_CLC_OVERLOAD _CLC_DEF __CLC_GENTYPE native_rsqrt
(
__CLC_GENTYPE val
)
{
2
return
1.0f
/
native_sqrt
(
val
);
3
}