summaryrefslogtreecommitdiff
path: root/test/routines/level3/xsymm.h
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-04-27 11:37:55 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-04-27 11:37:55 +0200
commit3555cd043654ec24ff325bd6205281af790e50d2 (patch)
treec36cfd23550a3eb3b435cca64c29f58f77328173 /test/routines/level3/xsymm.h
parentc8e28a33c0b786aa3772b6f6d822245b5f2ad9ea (diff)
All CLBlast enum constants now have the same raw values as in the cblas standard
Diffstat (limited to 'test/routines/level3/xsymm.h')
-rw-r--r--test/routines/level3/xsymm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/routines/level3/xsymm.h b/test/routines/level3/xsymm.h
index f867c238..e638b735 100644
--- a/test/routines/level3/xsymm.h
+++ b/test/routines/level3/xsymm.h
@@ -101,9 +101,9 @@ class TestXsymm {
static StatusCode RunReference1(const Arguments<T> &args, Buffers<T> &buffers, Queue &queue) {
auto queue_plain = queue();
auto event = cl_event{};
- auto status = clblasXsymm(static_cast<clblasOrder>(args.layout),
- static_cast<clblasSide>(args.side),
- static_cast<clblasUplo>(args.triangle),
+ auto status = clblasXsymm(convertToCLBLAS(args.layout),
+ convertToCLBLAS(args.side),
+ convertToCLBLAS(args.triangle),
args.m, args.n, args.alpha,
buffers.a_mat(), args.a_offset, args.a_ld,
buffers.b_mat(), args.b_offset, args.b_ld, args.beta,