Small fix for a file that isn't currently compiled anymore

This commit is contained in:
Cedric Nugteren 2017-03-10 20:53:20 +01:00
parent d754586b49
commit 3846f44eaf

View file

@ -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)