Files
CMake/Tests/Cuda/Complex/file1.cu
2016-11-14 16:40:50 -05:00

11 lines
125 B
Plaintext

#include "file1.h"
result_type __device__ file1_func(int x)
{
result_type r;
r.input = x;
r.sum = x*x;
return r;
}