Mentions légales du service

Skip to content
Snippets Groups Projects

WIP: Minimal structure for the new tests

Compare and
15 files
+ 2343
0
Compare changes
  • Side-by-side
  • Inline
Files
15
+ 20
0
# You can enumerate each parameter's values as an explicit list separated by commas or by a range start:end[:step]
# Not given parameters will receive default values
# LACPY
# nb: Tile size
# ib: Inner tile size
# uplo: Part of the matrix to be copied (0 for Upper, 1 for Lower and 2 for UpperLower)
# M: Number of rows of matrices A and C
# N: Number of columns of matrices B and C
# LDA: Leading dimension of matrix A
# LDB: Leading dimension of matrix B
nb = 8, 16
ib = 8
uplo = 1
m = 10:12:2
n = 5
lda = 7
ldb = 7
\ No newline at end of file
Loading