From 7c97cfe7f63650fc79ce4fa7f081b556ce275475 Mon Sep 17 00:00:00 2001 From: Justin Berger Date: Sat, 17 Mar 2018 08:18:45 -0600 Subject: Made it test dcldgemm instead --- redist/test_dcl.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'redist') diff --git a/redist/test_dcl.c b/redist/test_dcl.c index a9512f8..6d49548 100644 --- a/redist/test_dcl.c +++ b/redist/test_dcl.c @@ -39,7 +39,9 @@ int main() FLT x[4] = {7, 8, 9, 10}; FLT R[4]; - dclMul(R, 1, A[0], 4, x, 1, 4, 1, 3); + // dclMul(R, 1, A[0], 4, x, 1, 4, 1, 3); + dcldgemm(0, 0, 4, 1, 3, 1, A[0], 4, x, 1, 0, R, 1); + dclPrint(x, 1, 4, 1); dclPrint(R, 1, 4, 1); -- cgit v1.2.3