Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Spack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eic_tools
Spack
Commits
41c01b52
Commit
41c01b52
authored
9 years ago
by
David Beckingsale
Browse files
Options
Downloads
Patches
Plain Diff
Filter wrapper data to use correct compilers in OpenMPI
parent
d16095c8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
var/spack/packages/openmpi/package.py
+45
-0
45 additions, 0 deletions
var/spack/packages/openmpi/package.py
with
45 additions
and
0 deletions
var/spack/packages/openmpi/package.py
+
45
−
0
View file @
41c01b52
import
os
from
spack
import
*
class
Openmpi
(
Package
):
"""
Open MPI is a project combining technologies and resources from
several other projects (FT-MPI, LA-MPI, LAM/MPI, and PACX-MPI)
...
...
@@ -21,6 +24,14 @@ class Openmpi(Package):
provides
(
'
mpi@:2
'
)
def
setup_dependent_environment
(
self
,
module
,
spec
,
dep_spec
):
"""
For dependencies, make mpicc
'
s use spack wrapper.
"""
os
.
environ
[
'
OMPI_CC
'
]
=
'
cc
'
os
.
environ
[
'
OMPI_CXX
'
]
=
'
c++
'
os
.
environ
[
'
OMPI_FC
'
]
=
'
f90
'
def
install
(
self
,
spec
,
prefix
):
config_args
=
[
"
--prefix=%s
"
%
prefix
]
...
...
@@ -39,3 +50,37 @@ def install(self, spec, prefix):
configure
(
*
config_args
)
make
()
make
(
"
install
"
)
self
.
filter_compilers
()
def
filter_compilers
(
self
):
"""
Run after install to make the MPI compilers use the
compilers that Spack built the package with.
If this isn
'
t done, they
'
ll have CC, CXX, F77, and FC set
to Spack
'
s generic cc, c++, f77, and f90. We want them to
be bound to whatever compiler they were built with.
"""
kwargs
=
{
'
ignore_absent
'
:
True
,
'
backup
'
:
False
,
'
string
'
:
False
}
dir
=
os
.
path
.
join
(
self
.
prefix
,
'
share/openmpi/
'
)
cc_wrappers
=
[
'
mpicc-vt-wrapper-data.txt
'
,
'
mpicc-wrapper-data.txt
'
,
'
ortecc-wrapper-data.txt
'
,
'
shmemcc-wrapper-data.txt
'
]
cxx_wrappers
=
[
'
mpic++-vt-wrapper-data.txt
'
,
'
mpic++-wrapper-data.txt
'
]
fc_wrappers
=
[
'
mpifort-vt-wrapper-data.txt
'
,
'
mpifort-wrapper-data.txt
'
,
'
shmemfort-wrapper-data.txt
'
]
for
wrapper
in
cc_wrappers
:
filter_file
(
'
compiler=.*
'
,
'
compiler=%s
'
%
self
.
compiler
.
cc
,
os
.
path
.
join
(
dir
,
wrapper
),
**
kwargs
)
for
wrapper
in
cxx_wrappers
:
filter_file
(
'
compiler=.*
'
,
'
compiler=%s
'
%
self
.
compiler
.
cxx
,
os
.
path
.
join
(
dir
,
wrapper
),
**
kwargs
)
for
wrapper
in
fc_wrappers
:
filter_file
(
'
compiler=.*
'
,
'
compiler=%s
'
%
self
.
compiler
.
fc
,
os
.
path
.
join
(
dir
,
wrapper
),
**
kwargs
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment