From 3846f44eaf389ee24a698d4947e5c16bd14c3d0e Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Fri, 10 Mar 2017 20:53:20 +0100 Subject: [PATCH] Small fix for a file that isn't currently compiled anymore --- test/routines/levelx/xinvert.hpp | 4 ++-- 1 file 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 &args, Buffers &buffers, Queue &queue) { - return RunReference(args, buffers[0], queue); + return RunReference(args, buffers, queue); } static StatusCode RunReference2(const Arguments &args, Buffers &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)