summaryrefslogtreecommitdiff
path: root/test/routines/level2/xger.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/routines/level2/xger.hpp')
-rw-r--r--test/routines/level2/xger.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/routines/level2/xger.hpp b/test/routines/level2/xger.hpp
index 7fe37e1a..92a1a2ae 100644
--- a/test/routines/level2/xger.hpp
+++ b/test/routines/level2/xger.hpp
@@ -120,7 +120,7 @@ class TestXger {
// Describes how to run the cuBLAS routine (for correctness/performance comparison)
#ifdef CLBLAST_REF_CUBLAS
static StatusCode RunReference3(const Arguments<T> &args, BuffersCUDA<T> &buffers, Queue &) {
- auto status = cublasXger(args.layout,
+ auto status = cublasXger(reinterpret_cast<cublasHandle_t>(args.cublas_handle), args.layout,
args.m, args.n, args.alpha,
buffers.x_vec, args.x_offset, args.x_inc,
buffers.y_vec, args.y_offset, args.y_inc,