From f7d1946eb7023ff58fdb44c4d7d45a255e6b3202 Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Thu, 21 Nov 2024 16:45:22 +0100 Subject: [PATCH] v0.0.6 (addendum) - added a the blas_library parameter to mamul1, for this: - added support for the `default-` keyword as package_id, which makes the parameter system to find the blas flavour of the default blas. - made the package default version retrieval more generic (replaces a gfortran specific code). warning: these discovery mechanisms have only been implemented for debian hosts at the moment. work related to [https://bugzilla.ipr.univ-rennes.fr/show_bug.cgi?id=3958] --- test/test_benchmarks.py | 1 + test/test_clusterbench.py | 1 + 2 files changed, 2 insertions(+) diff --git a/test/test_benchmarks.py b/test/test_benchmarks.py index 6cb9717..3fc2a13 100644 --- a/test/test_benchmarks.py +++ b/test/test_benchmarks.py @@ -40,6 +40,7 @@ class BenchmarksTestCase(unittest.TestCase): benchmark_id = 'mamul1' benchmark_config = { 'fortran_compiler': 'gfortran:', + 'blas_library': ':', 'matrix_size': 1024, 'num_loops': 10, 'num_cores': 2 diff --git a/test/test_clusterbench.py b/test/test_clusterbench.py index d0c6a75..323763b 100644 --- a/test/test_clusterbench.py +++ b/test/test_clusterbench.py @@ -37,6 +37,7 @@ class ClusterBenchTestCase(unittest.TestCase): benchmark_id = 'mamul1' benchmark_config = { 'fortran_compiler': 'gfortran:', + 'blas_library': ':', 'matrix_size': 1024, 'num_loops': 10, }