summaryrefslogtreecommitdiff
path: root/test/routines/level2/xtbmv.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/routines/level2/xtbmv.h')
-rw-r--r--test/routines/level2/xtbmv.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/routines/level2/xtbmv.h b/test/routines/level2/xtbmv.h
index 600b4131..1425b60b 100644
--- a/test/routines/level2/xtbmv.h
+++ b/test/routines/level2/xtbmv.h
@@ -87,10 +87,10 @@ class TestXtbmv {
static StatusCode RunReference1(const Arguments<T> &args, Buffers<T> &buffers, Queue &queue) {
auto queue_plain = queue();
auto event = cl_event{};
- auto status = clblasXtbmv<T>(static_cast<clblasOrder>(args.layout),
- static_cast<clblasUplo>(args.triangle),
- static_cast<clblasTranspose>(args.a_transpose),
- static_cast<clblasDiag>(args.diagonal),
+ auto status = clblasXtbmv<T>(convertToCLBLAS(args.layout),
+ convertToCLBLAS(args.triangle),
+ convertToCLBLAS(args.a_transpose),
+ convertToCLBLAS(args.diagonal),
args.n, args.kl,
buffers.a_mat(), args.a_offset, args.a_ld,
buffers.x_vec(), args.x_offset, args.x_inc,