mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-02-21 12:28:44 +00:00
workloads/meabo: Update parameter names to be more consistent
Rename `nrow` and `ncol` to `num_rows` and `num_cols` respectively to be more consistent with the other parameter names.
This commit is contained in:
parent
6f5fca36df
commit
47ec0c7720
@ -72,8 +72,9 @@ class Meabo(Workload):
|
|||||||
default=1048576,
|
default=1048576,
|
||||||
),
|
),
|
||||||
Parameter(
|
Parameter(
|
||||||
'nrow',
|
'num_rows',
|
||||||
kind=int,
|
kind=int,
|
||||||
|
aliases=['nrow'],
|
||||||
description='''
|
description='''
|
||||||
Number of rows for the sparse matrix used in Phase 6.
|
Number of rows for the sparse matrix used in Phase 6.
|
||||||
''',
|
''',
|
||||||
@ -81,8 +82,9 @@ class Meabo(Workload):
|
|||||||
default=16384,
|
default=16384,
|
||||||
),
|
),
|
||||||
Parameter(
|
Parameter(
|
||||||
'ncol',
|
'num_cols',
|
||||||
kind=int,
|
kind=int,
|
||||||
|
aliases=['ncol'],
|
||||||
description='''
|
description='''
|
||||||
Number of columns for the sparse matrix used in Phase 6.
|
Number of columns for the sparse matrix used in Phase 6.
|
||||||
''',
|
''',
|
||||||
@ -217,8 +219,8 @@ class Meabo(Workload):
|
|||||||
('-B', 'bind_to_cpu_set'),
|
('-B', 'bind_to_cpu_set'),
|
||||||
('-b', 'block_size'),
|
('-b', 'block_size'),
|
||||||
('-l', 'llist_size'),
|
('-l', 'llist_size'),
|
||||||
('-c', 'ncol'),
|
('-c', 'num_col'),
|
||||||
('-r', 'nrow'),
|
('-r', 'num_row'),
|
||||||
('-C', 'num_cpus'),
|
('-C', 'num_cpus'),
|
||||||
('-H', 'num_hwcntrs'),
|
('-H', 'num_hwcntrs'),
|
||||||
('-i', 'loops'),
|
('-i', 'loops'),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user