11 lines
127 B
Plaintext
Raw Normal View History

2017-07-20 19:35:53 +02:00
#include "file1.h"
result_type __device__ file1_func(int x)
{
result_type r;
r.input = x;
r.sum = x * x;
return r;
}