diff --git a/docs/software_layer/cpu_targets.md b/docs/software_layer/cpu_targets.md index 65b95c4ca..922ed1d23 100644 --- a/docs/software_layer/cpu_targets.md +++ b/docs/software_layer/cpu_targets.md @@ -10,6 +10,7 @@ In the 2023.06 version of the EESSI repository, the following CPU microarchitect * `x86_64/amd/zen3`: AMD Milan, Milan-X * `x86_64/amd/zen4`: AMD Genoa, Genoa-X, Bergamo, Siena * `x86_64/intel/haswell`: Intel Haswell, Broadwell -* `x86_64/intel/skylake_avx512`: Intel Skylake, Cascade Lake, Ice Lake, ... +* `x86_64/intel/skylake_avx512`: Intel Skylake, Cascade Lake, Ice Lake, Cooper Lake +* `x86_64/intel/sapphirerapids`: Intel Sapphire Rapids, Emerald Rapids The names of these CPU targets correspond to the names used by [archspec](https://github.com/archspec/archspec). diff --git a/scripts/available_software/available_software.py b/scripts/available_software/available_software.py index 5ae45552c..61cdc76fc 100644 --- a/scripts/available_software/available_software.py +++ b/scripts/available_software/available_software.py @@ -25,7 +25,7 @@ EESSI_TOPDIR = "/cvmfs/software.eessi.io/versions/2023.06" # some CPU targets are excluded for now, because software layer is too incomplete currently -EXCLUDE_CPU_TARGETS = ['aarch64/a64fx', 'x86_64/intel/sapphire_rapids'] +EXCLUDE_CPU_TARGETS = ['aarch64/a64fx'] # --------------------------------------------------------------------------------------------------------