diff options
author | Harshula Jayasuriya <harshula.jayasuriya@anu.edu.au> | 2023-03-10 05:51:11 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-09 19:51:11 +0100 |
commit | e560beed1941b41fd0135a2b203727e21c2adfe5 (patch) | |
tree | edf95682e6e5874b7f7204a145f25f33a5bffbc8 /etc | |
parent | de586bb66c17b2fefae4ff49b24af6a13080dbe7 (diff) | |
download | spack-e560beed1941b41fd0135a2b203727e21c2adfe5.tar.gz spack-e560beed1941b41fd0135a2b203727e21c2adfe5.tar.bz2 spack-e560beed1941b41fd0135a2b203727e21c2adfe5.tar.xz spack-e560beed1941b41fd0135a2b203727e21c2adfe5.zip |
concretizer.yaml: document valid values for granularity (#35961)
Diffstat (limited to 'etc')
-rw-r--r-- | etc/spack/defaults/concretizer.yaml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/etc/spack/defaults/concretizer.yaml b/etc/spack/defaults/concretizer.yaml index f455aa723d..df846c523a 100644 --- a/etc/spack/defaults/concretizer.yaml +++ b/etc/spack/defaults/concretizer.yaml @@ -20,9 +20,10 @@ concretizer: # needed to reach a solution increases noticeably with the number of targets # considered. targets: - # Determine whether we want to target specific or generic microarchitectures. - # An example of the first kind might be for instance "skylake" or "bulldozer", - # while generic microarchitectures are for instance "aarch64" or "x86_64_v4". + # Determine whether we want to target specific or generic + # microarchitectures. Valid values are: "microarchitectures" or "generic". + # An example of "microarchitectures" would be "skylake" or "bulldozer", + # while an example of "generic" would be "aarch64" or "x86_64_v4". granularity: microarchitectures # If "false" allow targets that are incompatible with the current host (for # instance concretize with target "icelake" while running on "haswell"). @@ -33,4 +34,4 @@ concretizer: # environments can always be activated. When "false" perform concretization separately # on each root spec, allowing different versions and variants of the same package in # an environment. - unify: true
\ No newline at end of file + unify: true |