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/xsymv.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/routines/level2/xsymv.hpp') diff --git a/test/routines/level2/xsymv.hpp b/test/routines/level2/xsymv.hpp index 9411fa8d..aec0dfb0 100644 --- a/test/routines/level2/xsymv.hpp +++ b/test/routines/level2/xsymv.hpp @@ -120,7 +120,7 @@ class TestXsymv { // 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 = cublasXsymv(args.layout, + auto status = cublasXsymv(reinterpret_cast(args.cublas_handle), args.layout, convertToCUBLAS(args.triangle), args.n, args.alpha, buffers.a_mat, args.a_offset, args.a_ld, -- cgit v1.2.3