Skip to content
Snippets Groups Projects
Unverified Commit 9c3b4e4d authored by Nithin Senthil Kumar's avatar Nithin Senthil Kumar Committed by GitHub
Browse files

Changes to url port and a bug fix in mvapich2x package (#18096)


Co-authored-by: default avatarnithintsk <nithintsk@github.com>
parent cc06181e
No related branches found
No related tags found
No related merge requests found
......@@ -13,11 +13,11 @@ class Mvapich2Gdr(AutotoolsPackage):
installable from source and is only available through a binary mirror.
If you do not find the binary you're looking for, send us an email at
mvapich@cse.ohio-state.edu. The binary mirror url is:
http://mvapich.cse.ohio-state.edu:8080/download/mvapich/spack-mirror/mvapich2-gdr/
http://mvapich.cse.ohio-state.edu/download/mvapich/spack-mirror/mvapich2-gdr/
"""
homepage = 'http://mvapich.cse.ohio-state.edu'
url = 'http://mvapich.cse.ohio-state.edu:8080/download/mvapich/spack-mirror/mvapich2-gdr/mvapich2-gdr-2.3.4.tar.gz'
url = 'http://mvapich.cse.ohio-state.edu/download/mvapich/spack-mirror/mvapich2-gdr/mvapich2-gdr-2.3.4.tar.gz'
maintainers = ['nithintsk', 'harisubramoni']
......
......@@ -15,11 +15,11 @@ class Mvapich2x(AutotoolsPackage):
runtime. MVAPICH2-X is not installable from source and is only available
through a binary mirror. If you do not find the binary you're looking for,
send us an email at mvapich@cse.ohio-state.edu. The binary mirror url is:
http://mvapich.cse.ohio-state.edu:8080/download/mvapich/spack-mirror/mvapich2x/
http://mvapich.cse.ohio-state.edu/download/mvapich/spack-mirror/mvapich2x/
"""
homepage = "http://mvapich.cse.ohio-state.edu"
url = "http://mvapich.cse.ohio-state.edu:8080/download/mvapich/spack-mirror/mvapich2x/mvapich2x-2.3.tar.gz"
url = "http://mvapich.cse.ohio-state.edu/download/mvapich/spack-mirror/mvapich2x/mvapich2x-2.3.tar.gz"
maintainers = ['nithintsk', 'harisubramoni']
......@@ -174,11 +174,11 @@ def setup_build_environment(self, env):
def setup_run_environment(self, env):
if 'pmi_version=pmi1' in self.spec:
set('SLURM_MPI_TYPE', 'pmi1')
env.set('SLURM_MPI_TYPE', 'pmi1')
if 'pmi_version=pmi2' in self.spec:
set('SLURM_MPI_TYPE', 'pmi2')
env.set('SLURM_MPI_TYPE', 'pmi2')
if 'pmi_version=pmix' in self.spec:
set('SLURM_MPI_TYPE', 'pmix')
env.set('SLURM_MPI_TYPE', 'pmix')
# Because MPI functions as a compiler, we need to treat it as one and
# add its compiler paths to the run environment.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment