v0.0.6 (addendum)
- added a the blas_library parameter to mamul1, for this: - added support for the `default-<packagetype>` 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]
This commit is contained in:
parent
9d648b4fdc
commit
f7d1946eb7
|
@ -40,6 +40,7 @@ class BenchmarksTestCase(unittest.TestCase):
|
|||
benchmark_id = 'mamul1'
|
||||
benchmark_config = {
|
||||
'fortran_compiler': 'gfortran:<default>',
|
||||
'blas_library': '<default-libblas>:<default>',
|
||||
'matrix_size': 1024,
|
||||
'num_loops': 10,
|
||||
'num_cores': 2
|
||||
|
|
|
@ -37,6 +37,7 @@ class ClusterBenchTestCase(unittest.TestCase):
|
|||
benchmark_id = 'mamul1'
|
||||
benchmark_config = {
|
||||
'fortran_compiler': 'gfortran:<default>',
|
||||
'blas_library': '<default-libblas>:<default>',
|
||||
'matrix_size': 1024,
|
||||
'num_loops': 10,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue