summaryrefslogtreecommitdiffstats
path: root/Tests/Cuda/Complex/file1.cu
blob: a2e8bf31e71f78a45769c734509cb756fb17b07d (plain)
1
2
3
4
5
6
7
8
9
10

#include "file1.h"

result_type __device__ file1_func(int x)
{
  result_type r;
  r.input = x;
  r.sum = x*x;
  return r;
}