summaryrefslogtreecommitdiff
path: root/test/wrapper_cuda.hpp
diff options
context:
space:
mode:
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
// =================================================================================================