summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-03-10 20:53:20 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2017-03-10 20:53:20 +0100
commit3846f44eaf389ee24a698d4947e5c16bd14c3d0e (patch)
treeb515368fcd1e39afb5805f67796b082ccc8066f9
parentd754586b49c6af64e049b625060ef7be08fa5525 (diff)
Small fix for a file that isn't currently compiled anymore
-rw-r--r--test/routines/levelx/xinvert.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/routines/levelx/xinvert.hpp b/test/routines/levelx/xinvert.hpp
index 94cd9393..b470dbf3 100644
--- a/test/routines/levelx/xinvert.hpp
+++ b/test/routines/levelx/xinvert.hpp
@@ -190,11 +190,11 @@ class TestXinvert {
// Describes how to run a naive version of the routine (for correctness/performance comparison).
// Note that a proper clBLAS or CPU BLAS comparison is not available for non-BLAS routines.
static StatusCode RunReference1(const Arguments<T> &args, Buffers<T> &buffers, Queue &queue) {
- return RunReference(args, buffers[0], queue);
+ return RunReference(args, buffers, queue);
}
static StatusCode RunReference2(const Arguments<T> &args, Buffers<T> &buffers, Queue &queue) {
- return RunReference(args, buffers[0], queue);
+ return RunReference(args, buffers, queue);
}
// Describes how to download the results of the computation (more importantly: which buffer)