diff options
Diffstat (limited to 'Tests/Cuda/Complex/file1.cu')
-rw-r--r-- | Tests/Cuda/Complex/file1.cu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Cuda/Complex/file1.cu b/Tests/Cuda/Complex/file1.cu index a2e8bf3..1ce63bf 100644 --- a/Tests/Cuda/Complex/file1.cu +++ b/Tests/Cuda/Complex/file1.cu @@ -5,6 +5,6 @@ result_type __device__ file1_func(int x) { result_type r; r.input = x; - r.sum = x*x; + r.sum = x * x; return r; } |