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
[docs] Update HowToReleaseLLVM documentation.
[llvm-project.git]
/
libclc
/
test
/
rsqrt.cl
blob
13ad216b79f4bf54c7ba9f63b4923e5352958cd6
1
#
pragma OPENCL EXTENSION cl_khr_fp64
:
enable
2
3
__kernel void foo
(
float4
*
x
,
double4
*
y
) {
4
x
[1] = rsqrt(x[0]);
5
y[1]
=
rsqrt
(
y
[0]);
6
}