Skip to content

Commit

Permalink
Merge pull request #182 from xylar/remove-mvapich-on-anvil
Browse files Browse the repository at this point in the history
Remove `gnu` with `mvapich` on Anvil
  • Loading branch information
xylar authored Feb 1, 2024
2 parents c69e0be + 7b6c232 commit 46d07f4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
3 changes: 3 additions & 0 deletions deploy/unsupported.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ compy, pgi, mvapich2
pm-cpu, aocc, mpich
pm-cpu, amdclang, mpich

# cannot build MOAB in spack
anvil, gnu, mvapich

# compiles but tests unreliable (errors or hanging),
# see https://github.com/MPAS-Dev/compass/issues/336
anvil, intel, mvapich
2 changes: 1 addition & 1 deletion docs/developers_guide/machines/anvil.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Then, you can build the MPAS model with
make [DEBUG=true] [OPENMP=true] intel-mpi
```

For other MPI libraries (`openmpi` or `mvapich` instead of `impi`), use
For other MPI libraries (`openmpi` instead of `impi`), use

```bash
make [DEBUG=true] [OPENMP=true] ifort
Expand Down
2 changes: 0 additions & 2 deletions docs/developers_guide/machines/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ supported for those configurations with `gnu` compilers.
| | | openmpi | ifort |
| +------------+-----------+-------------------+
| | gnu | openmpi | gfortran |
| | +-----------+-------------------+
| | | mvapich | gfortran |
+--------------+------------+-----------+-------------------+
| chicoma-cpu | gnu | mpich | gnu-cray |
+--------------+------------+-----------+-------------------+
Expand Down
13 changes: 7 additions & 6 deletions utils/matrix/setup_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,21 @@
'anvil': {
('intel', 'impi'): 'intel-mpi',
('intel', 'openmpi'): 'ifort',
('intel', 'mvapich'): 'ifort',
('gnu', 'openmpi'): 'gfortran',
('gnu', 'mvapich'): 'gfortran'},
('gnu', 'openmpi'): 'gfortran'},
'chicoma-cpu': {
('gnu', 'mpich'): 'gnu-cray'},
'chrysalis': {
('intel', 'impi'): 'intel-mpi',
('intel', 'openmpi'): 'ifort',
('gnu', 'openmpi'): 'gfortran'},
'compy': {
('intel', 'impi'): 'intel-mpi',
('gnu', 'openmpi'): 'gfortran'},
('intel', 'impi'): 'intel-mpi'},
'frontier': {
('gnu', 'mpich'): 'gnu-cray',
('crayclang', 'mpich'): 'cray-cray'},
'pm-cpu': {
('gnu', 'mpich'): 'gnu-cray'},
('gnu', 'mpich'): 'gnu-cray',
('intel', 'mpich'): 'intel-cray'},
'conda-linux': {
('gfortran', 'mpich'): 'gfortran',
('gfortran', 'openmpi'): 'gfortran'},
Expand Down

0 comments on commit 46d07f4

Please sign in to comment.