summaryrefslogtreecommitdiff
path: root/test/wrapper_cuda.hpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-04-16 17:53:51 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2017-04-16 17:53:51 +0200
commite3bb58f60277e70a26b2cef782945027871135d5 (patch)
tree5db934bba015b9fe16a5c52958eaa30431929484 /test/wrapper_cuda.hpp
parentf7f8ec644f51d16f888b6a7086009b79c0beef8f (diff)
Finalized support for performance testing against cuBLAS
Diffstat (limited to 'test/wrapper_cuda.hpp')
-rw-r--r--test/wrapper_cuda.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/wrapper_cuda.hpp b/test/wrapper_cuda.hpp
index 51f897c4..c97ae3ef 100644
--- a/test/wrapper_cuda.hpp
+++ b/test/wrapper_cuda.hpp
@@ -72,7 +72,7 @@ namespace clblast {
*buffer_cuda = nullptr;
}
#else
- template <typename T> void CUDAToHost(T*, const std::vector<T>&, const size_t) { }
+ template <typename T> void CUDAToHost(T**, const std::vector<T>&, const size_t) { }
#endif
// Allocates space on the CUDA device and copies in data from the host
@@ -96,7 +96,7 @@ namespace clblast {
}
}
#else
- template <typename T> void HostToCUDA(T*, const std::vector<T>&, const size_t) { }
+ template <typename T> void HostToCUDA(T**, const std::vector<T>&, const size_t) { }
#endif
// =================================================================================================