diff options
Diffstat (limited to 'tests/rotate_test.cu')
-rw-r--r-- | tests/rotate_test.cu | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/rotate_test.cu b/tests/rotate_test.cu deleted file mode 100644 index 6cafc12..0000000 --- a/tests/rotate_test.cu +++ /dev/null @@ -1,14 +0,0 @@ -//-*-c-*- - -#include "rotate.h" - -extern "C" -{ - -__global__ void rotate(float3 *a, float *phi, float3 *n, float3 *dest) -{ - int idx = blockIdx.x*blockDim.x + threadIdx.x; - dest[idx] = rotate(a[idx], phi[idx], n[idx]); -} - -} // extern "c" |