summaryrefslogtreecommitdiff
path: root/Tests/Cuda/ObjectLibrary/static.cu
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Cuda/ObjectLibrary/static.cu')
-rw-r--r--Tests/Cuda/ObjectLibrary/static.cu6
1 files changed, 1 insertions, 5 deletions
diff --git a/Tests/Cuda/ObjectLibrary/static.cu b/Tests/Cuda/ObjectLibrary/static.cu
index aa357295a7..37bb8391e7 100644
--- a/Tests/Cuda/ObjectLibrary/static.cu
+++ b/Tests/Cuda/ObjectLibrary/static.cu
@@ -3,7 +3,7 @@
#include <cuda_runtime.h>
#include <iostream>
-int __host__ file1_sq_func(int x)
+int __host__ cu1_sq_func(int x)
{
cudaError_t err;
int nDevices = 0;
@@ -13,9 +13,5 @@ int __host__ file1_sq_func(int x)
std::cerr << "err: " << err << std::endl;
return 1;
}
- std::cout << "this library uses cuda code" << std::endl;
- std::cout << "you have " << nDevices << " devices that support cuda"
- << std::endl;
-
return x * x;
}