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} 7