forked from spack/spack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Default scope is versioned with spack and can be overridden by site or user config. - Default scope provides sensible default concretization preferences for all of Spack. - per-platform concretization scope can be added later (to force a particular MPI on, e.g., Cray systems)
- Loading branch information
Showing
6 changed files
with
56 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# ------------------------------------------------------------------------- | ||
# This file controls default concretization preferences for Spack. | ||
# | ||
# Settings here are versioned with Spack and are intended to provide | ||
# sensible defaults out of the box. Spack maintainers should edit this | ||
# file to keep it current. | ||
# | ||
# Users can override these settings by editing the following files. | ||
# | ||
# Per-spack-instance settings (overrides defaults): | ||
# $SPACK_ROOT/etc/spack/packages.yaml | ||
# | ||
# Per-user settings (overrides default and site settings): | ||
# ~/.spack/packages.yaml | ||
# ------------------------------------------------------------------------- | ||
packages: | ||
all: | ||
providers: | ||
mpi: [openmpi, mpich] | ||
blas: [openblas] | ||
lapack: [openblas] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# ------------------------------------------------------------------------- | ||
# This is the default spack repository configuration. It includes the | ||
# builtin spack package repository. | ||
# | ||
# Users can override these settings by editing the following files. | ||
# | ||
# Per-spack-instance settings (overrides defaults): | ||
# $SPACK_ROOT/etc/spack/repos.yaml | ||
# | ||
# Per-user settings (overrides default and site settings): | ||
# ~/.spack/repos.yaml | ||
# ------------------------------------------------------------------------- | ||
repos: | ||
- $spack/var/spack/repos/builtin |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters