mirror of
https://github.com/RRZE-HPC/OSACA.git
synced 2026-01-04 18:20:09 +01:00
added CLX as synonym for CSX uarch
This commit is contained in:
@@ -20,6 +20,7 @@ SUPPORTED_ARCHS = [
|
||||
"BDW",
|
||||
"SKX",
|
||||
"CSX",
|
||||
"CLX",
|
||||
"ICL",
|
||||
"ZEN1",
|
||||
"ZEN2",
|
||||
@@ -190,6 +191,9 @@ def check_arguments(args, parser):
|
||||
parser.error(
|
||||
"Microarchitecture not supported. Please see --help for all valid architecture codes."
|
||||
)
|
||||
# manually set CLX to CSX to support both abbreviations
|
||||
if args.arch.upper() == "CLX":
|
||||
args.arch = "CSX"
|
||||
if "import_data" in args and args.import_data not in supported_import_files:
|
||||
parser.error(
|
||||
"Microbenchmark not supported for data import. Please see --help for all valid "
|
||||
|
||||
Reference in New Issue
Block a user