From f7f8ec644f51d16f888b6a7086009b79c0beef8f Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Thu, 13 Apr 2017 21:31:27 +0200 Subject: Fixed CUDA malloc and cuBLAS handles: cuBLAS as a performance-reference now works --- test/routines/level2/xher.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/routines/level2/xher.hpp') diff --git a/test/routines/level2/xher.hpp b/test/routines/level2/xher.hpp index c313d0f5..1ac1247b 100644 --- a/test/routines/level2/xher.hpp +++ b/test/routines/level2/xher.hpp @@ -113,7 +113,7 @@ class TestXher { // Describes how to run the cuBLAS routine (for correctness/performance comparison) #ifdef CLBLAST_REF_CUBLAS static StatusCode RunReference3(const Arguments &args, BuffersCUDA &buffers, Queue &) { - auto status = cublasXher(args.layout, + auto status = cublasXher(reinterpret_cast(args.cublas_handle), args.layout, convertToCUBLAS(args.triangle), args.n, args.alpha, buffers.x_vec, args.x_offset, args.x_inc, -- cgit v1.2.3