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
e2e72b14
Commit
e2e72b14
authored
9 years ago
by
Adam J. Stewart
Browse files
Options
Downloads
Patches
Plain Diff
Use new openmp_flag and mpi attributes
parent
e7ced543
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/repos/builtin/packages/elk/package.py
+23
-16
23 additions, 16 deletions
var/spack/repos/builtin/packages/elk/package.py
with
23 additions
and
16 deletions
var/spack/repos/builtin/packages/elk/package.py
+
23
−
16
View file @
e2e72b14
...
...
@@ -25,6 +25,7 @@
from
spack
import
*
import
spack
class
Elk
(
Package
):
'''
An all-electron full-potential linearised augmented-plane wave
(FP-LAPW) code with many advanced features.
'''
...
...
@@ -58,34 +59,29 @@ def configure(self, spec):
# Dictionary of configuration options
config
=
{
'
MAKE
'
:
'
make
'
,
'
F90
'
:
join_path
(
spack
.
build_env_path
,
'
f90
'
),
'
F77
'
:
join_path
(
spack
.
build_env_path
,
'
f77
'
),
'
AR
'
:
'
ar
'
,
'
LIB_FFT
'
:
'
fftlib.a
'
,
'
SRC_MPI
'
:
'
mpi_stub.f90
'
,
'
SRC_OMP
'
:
'
omp_stub.f90
'
,
'
SRC_libxc
'
:
'
libxcifc_stub.f90
'
,
'
SRC_FFT
'
:
'
zfftifc.f90
'
'
AR
'
:
'
ar
'
}
# Compiler-specific flags
flags
=
''
if
self
.
compiler
.
name
==
'
intel
'
:
flags
=
'
-O3 -ip -unroll -no-prec-div
-openmp
'
flags
=
'
-O3 -ip -unroll -no-prec-div
'
elif
self
.
compiler
.
name
==
'
gcc
'
:
flags
=
'
-O3 -ffast-math -funroll-loops
-fopenmp
'
flags
=
'
-O3 -ffast-math -funroll-loops
'
elif
self
.
compiler
.
name
==
'
pgi
'
:
flags
=
'
-O3
-mp
-lpthread
'
flags
=
'
-O3 -lpthread
'
elif
self
.
compiler
.
name
==
'
g95
'
:
flags
=
'
-O3 -fno-second-underscore
'
elif
self
.
compiler
.
name
==
'
nag
'
:
flags
=
'
-O4 -kind=byte -dusty -dcfuns
'
elif
self
.
compiler
.
name
==
'
xl
'
:
flags
=
'
-O3
-qsmp=omp
'
flags
=
'
-O3
'
config
[
'
F90_OPTS
'
]
=
flags
config
[
'
F77_OPTS
'
]
=
flags
# BLAS/LAPACK support
# Note: BLAS/LAPACK must be compiled with OpenMP support
# if the +openmp variant is chosen
blas
=
'
blas.a
'
lapack
=
'
lapack.a
'
if
'
+blas
'
in
spec
:
...
...
@@ -98,16 +94,25 @@ def configure(self, spec):
if
'
+fft
'
in
spec
:
config
[
'
LIB_FFT
'
]
=
join_path
(
spec
[
'
fftw
'
].
prefix
.
lib
,
'
libfftw3.so
'
)
config
[
'
SRC_FFT
'
]
=
'
zfftifc_fftw.f90
'
else
:
config
[
'
LIB_FFT
'
]
=
'
fftlib.a
'
config
[
'
SRC_FFT
'
]
=
'
zfftifc.f90
'
# MPI support
if
'
+mpi
'
in
spec
:
config
.
pop
(
'
SRC_MPI
'
)
config
[
'
F90
'
]
=
join_path
(
spec
[
'
mpi
'
].
prefix
.
bin
,
'
mpif90
'
)
config
[
'
F77
'
]
=
join_path
(
spec
[
'
mpi
'
].
prefix
.
bin
,
'
mpif77
'
)
config
[
'
F90
'
]
=
join_path
(
spec
[
'
mpi
'
].
mpifc
)
config
[
'
F77
'
]
=
join_path
(
spec
[
'
mpi
'
].
mpif77
)
else
:
config
[
'
F90
'
]
=
join_path
(
spack
.
build_env_path
,
'
f90
'
),
config
[
'
F77
'
]
=
join_path
(
spack
.
build_env_path
,
'
f77
'
),
config
[
'
SRC_MPI
'
]
=
'
mpi_stub.f90
'
# OpenMP support
if
'
+openmp
'
in
spec
:
config
.
pop
(
'
SRC_OMP
'
)
config
[
'
F90_OPTS
'
]
+=
'
'
+
self
.
compiler
.
openmp_flag
config
[
'
F77_OPTS
'
]
+=
'
'
+
self
.
compiler
.
openmp_flag
else
:
config
[
'
SRC_OMP
'
]
=
'
omp_stub.f90
'
# Libxc support
if
'
+libxc
'
in
spec
:
...
...
@@ -120,6 +125,8 @@ def configure(self, spec):
'
libxc.f90
'
,
'
libxcifc.f90
'
])
else
:
config
[
'
SRC_libxc
'
]
=
'
libxcifc_stub.f90
'
# Write configuration options to include file
with
open
(
'
make.inc
'
,
'
w
'
)
as
inc
:
...
...
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