diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2021-03-18 08:23:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 00:23:09 -0700 |
commit | 8cf6ad99170a64becb932c6e4c255c8adf4230c2 (patch) | |
tree | 06597bd8cf7fd572810c3cba3b732e6233610e31 | |
parent | 4c9c5393f1fad00b7e8c77661a02b236db2d0e40 (diff) | |
download | spack-8cf6ad99170a64becb932c6e4c255c8adf4230c2.tar.gz spack-8cf6ad99170a64becb932c6e4c255c8adf4230c2.tar.bz2 spack-8cf6ad99170a64becb932c6e4c255c8adf4230c2.tar.xz spack-8cf6ad99170a64becb932c6e4c255c8adf4230c2.zip |
archspec: update to latest version (#22357)
-rw-r--r-- | lib/spack/external/__init__.py | 2 | ||||
-rw-r--r-- | lib/spack/external/archspec/json/cpu/microarchitectures.json | 45 |
2 files changed, 45 insertions, 2 deletions
diff --git a/lib/spack/external/__init__.py b/lib/spack/external/__init__.py index 82c425846b..48c63bea78 100644 --- a/lib/spack/external/__init__.py +++ b/lib/spack/external/__init__.py @@ -11,7 +11,7 @@ archspec * Homepage: https://pypi.python.org/pypi/archspec * Usage: Labeling, comparison and detection of microarchitectures -* Version: 0.1.2 (commit 068b0ebd641211971acf10f39aa876703a34bae4) +* Version: 0.1.2 (commit 0389e83e87d3dc5043a7ac08172bd970706524d6) argparse -------- diff --git a/lib/spack/external/archspec/json/cpu/microarchitectures.json b/lib/spack/external/archspec/json/cpu/microarchitectures.json index 7fed4d7a52..5d1143c495 100644 --- a/lib/spack/external/archspec/json/cpu/microarchitectures.json +++ b/lib/spack/external/archspec/json/cpu/microarchitectures.json @@ -841,7 +841,7 @@ ], "intel": [ { - "versions": "19.0:", + "versions": "19.0.1:", "flags": "-march={name} -mtune={name}" } ] @@ -1328,6 +1328,49 @@ ] } }, + "zen3": { + "from": ["zen2"], + "vendor": "AuthenticAMD", + "features": [ + "bmi1", + "bmi2", + "f16c", + "fma", + "fsgsbase", + "avx", + "avx2", + "rdseed", + "clzero", + "aes", + "pclmulqdq", + "cx16", + "movbe", + "mmx", + "sse", + "sse2", + "sse4a", + "ssse3", + "sse4_1", + "sse4_2", + "abm", + "xsavec", + "xsaveopt", + "clflushopt", + "popcnt", + "clwb", + "vaes", + "vpclmulqdq" + ], + "compilers": { + "aocc": [ + { + "versions": "3.0:", + "name": "znver3", + "flags": "-march={name} -mtune={name}" + } + ] + } + }, "ppc64": { "from": [], "vendor": "generic", |