summaryrefslogtreecommitdiff
path: root/test/routines/level2/xhemv.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/routines/level2/xhemv.h')
-rw-r--r--test/routines/level2/xhemv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/routines/level2/xhemv.h b/test/routines/level2/xhemv.h
index fa242961..5652872d 100644
--- a/test/routines/level2/xhemv.h
+++ b/test/routines/level2/xhemv.h
@@ -93,8 +93,8 @@ class TestXhemv {
static StatusCode RunReference1(const Arguments<T> &args, Buffers<T> &buffers, Queue &queue) {
auto queue_plain = queue();
auto event = cl_event{};
- auto status = clblasXhemv(static_cast<clblasOrder>(args.layout),
- static_cast<clblasUplo>(args.triangle),
+ auto status = clblasXhemv(convertToCLBLAS(args.layout),
+ convertToCLBLAS(args.triangle),
args.n, args.alpha,
buffers.a_mat(), args.a_offset, args.a_ld,
buffers.x_vec(), args.x_offset, args.x_inc, args.beta,