From 3555cd043654ec24ff325bd6205281af790e50d2 Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Wed, 27 Apr 2016 11:37:55 +0200 Subject: All CLBlast enum constants now have the same raw values as in the cblas standard --- test/routines/level3/xherk.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/routines/level3/xherk.h') diff --git a/test/routines/level3/xherk.h b/test/routines/level3/xherk.h index 75a7c405..245293d6 100644 --- a/test/routines/level3/xherk.h +++ b/test/routines/level3/xherk.h @@ -91,9 +91,9 @@ class TestXherk { static StatusCode RunReference1(const Arguments &args, Buffers &buffers, Queue &queue) { auto queue_plain = queue(); auto event = cl_event{}; - auto status = clblasXherk(static_cast(args.layout), - static_cast(args.triangle), - static_cast(args.a_transpose), + auto status = clblasXherk(convertToCLBLAS(args.layout), + convertToCLBLAS(args.triangle), + convertToCLBLAS(args.a_transpose), args.n, args.k, args.alpha, buffers.a_mat(), args.a_offset, args.a_ld, args.beta, buffers.c_mat(), args.c_offset, args.c_ld, -- cgit v1.2.3