summaryrefslogtreecommitdiff
path: root/test/routines/levelx/xomatcopy.hpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-04-10 22:54:14 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2017-04-10 22:54:14 +0200
commit6b625f8915ce0596d65187bd3a8eb47e91a0084e (patch)
treeed16d34e567e52667f74131ff09f0673619dd661 /test/routines/levelx/xomatcopy.hpp
parent22b3ea9256bd197da3cd320560c14e5f3bd7fb86 (diff)
Added reference implementations for performance-testing against cuBLAS
Diffstat (limited to 'test/routines/levelx/xomatcopy.hpp')
-rw-r--r--test/routines/levelx/xomatcopy.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/routines/levelx/xomatcopy.hpp b/test/routines/levelx/xomatcopy.hpp
index d5973b4c..2e77e6f7 100644
--- a/test/routines/levelx/xomatcopy.hpp
+++ b/test/routines/levelx/xomatcopy.hpp
@@ -151,6 +151,9 @@ class TestXomatcopy {
static StatusCode RunReference2(const Arguments<T> &args, BuffersHost<T> &buffers_host, Queue&) {
return RunReference(args, buffers_host);
}
+ static StatusCode RunReference3(const Arguments<T> &args, BuffersCUDA<T> &buffers, Queue &) {
+ return StatusCode::kUnknownError;
+ }
// Describes how to download the results of the computation (more importantly: which buffer)
static std::vector<T> DownloadResult(const Arguments<T> &args, Buffers<T> &buffers, Queue &queue) {