From 7bab5171ebb3d72bc5b2777b7df05ec483d4342c Mon Sep 17 00:00:00 2001 From: Alycia Lisito <alycia.lisito@inria.fr> Date: Wed, 9 Feb 2022 15:38:15 +0100 Subject: [PATCH] testing: Correctly name the parameters in TRMM to follow lapack API --- testing/input/trmm.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testing/input/trmm.in b/testing/input/trmm.in index 6c6228f14..7c49f1540 100644 --- a/testing/input/trmm.in +++ b/testing/input/trmm.in @@ -4,8 +4,8 @@ # TRMM # nb: Tile size # ib: Inner tile size -# n: Order of the matrix A -# k: the number of columns of the matrix B if side = ChamLeft and the number of rows of the matrix B if side = ChamRight +# m: Number of rows of the matrix B and order of the matrix A if side = ChamLeft +# n: Number of columns of the matrix B and order of the matrix A if side = ChamRight # lda: Leading dimension of matrix A # ldb: Leading dimension of matrix B # uplo: Matrix part to be considered (0: Upper, 1: Lower) @@ -18,8 +18,8 @@ alpha = 0., 3.45 op = trmm nb = 16, 17 ib = 8 +m = 13, 21, 33 n = 15, 19, 35 -k = 13, 21, 33 lda = 38 ldb = 37 uplo = 0,1 -- GitLab