[docs] Update HowToReleaseLLVM documentation.
[llvm-project.git] / libclc / test / rsqrt.cl
blob13ad216b79f4bf54c7ba9f63b4923e5352958cd6
1 #pragma OPENCL EXTENSION cl_khr_fp64 : enable
3 __kernel void foo(float4 *x, double4 *y) {
4 x[1] = rsqrt(x[0]);
5 y[1] = rsqrt(y[0]);