repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
libclc
/
r600
/
lib
/
math
/
native_rsqrt.cl
blob
edf473e8409c6d20ea382437ff58c513221db063
1
#
include
<
clc
/
clc.h
>
2
3
#
include
"../../../generic/lib/clcmacro.h"
4
5
_CLC_OVERLOAD _CLC_DEF float native_rsqrt
(
float
x
)
6
{
7
return __builtin_r600_recipsqrt_ieeef
(
x
)
;
8
}
9
10
_CLC_UNARY_VECTORIZE
(
_CLC_OVERLOAD
_CLC_DEF
,
float
,
native_rsqrt
,
float
)
;