mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
12 lines
140 B
Plaintext
12 lines
140 B
Plaintext
|
|
#include "file1.h"
|
|
|
|
result_type __device__ file1_func(int x)
|
|
{
|
|
__ldg(&x);
|
|
result_type r;
|
|
r.input = x;
|
|
r.sum = x * x;
|
|
return r;
|
|
}
|