Allow compilation of mgridgen (serial) as well as parmgridgen (parallel) (#3906)

This commit is contained in:
Mark Olesen 2017-04-28 22:02:05 +02:00 committed by Adam J. Stewart
parent 15692c5475
commit 6814842814

View file

@ -26,11 +26,12 @@
from spack import * from spack import *
# Note: should probably be named 'mgridgen+mpi' (as per scotch, metis etc)
class Parmgridgen(Package): class Parmgridgen(Package):
"""MGRIDGEN is a serial library written entirely in ANSI C that implements """MGRIDGEN is a serial library written entirely in ANSI C that implements
(serial) algorithms for obtaining a sequence of successive coarse grids (serial) algorithms for obtaining a sequence of successive coarse grids
that are well-suited for geometric multigrid methods. that are well-suited for geometric multigrid methods.
ParMGridGen is the parallel version of MGridGen ParMGridGen is the parallel version of MGridGen.
""" """
homepage = "http://www-users.cs.umn.edu/~moulitsa/software.html" homepage = "http://www-users.cs.umn.edu/~moulitsa/software.html"
@ -38,7 +39,10 @@ class Parmgridgen(Package):
version('1.0', '2872fa95b7fb91d6bd525490eed62038') version('1.0', '2872fa95b7fb91d6bd525490eed62038')
depends_on('mpi') variant('mpi', default=True,
description='Activate the compilation of parallel libraries')
depends_on('mpi', when='+mpi')
def install(self, spec, prefix): def install(self, spec, prefix):
make_opts = [ make_opts = [
@ -46,26 +50,30 @@ def install(self, spec, prefix):
'COPTIONS=-fPIC', 'COPTIONS=-fPIC',
'LDOPTIONS=-fPIC', 'LDOPTIONS=-fPIC',
'CC={0}'.format(self.compiler.cc), 'CC={0}'.format(self.compiler.cc),
'PARCC={0}'.format(spec['mpi'].mpicc),
'LD={0}'.format(self.compiler.cc), 'LD={0}'.format(self.compiler.cc),
'PARLD={0}'.format(spec['mpi'].mpicc),
'LIBDIR=-L../..', 'LIBDIR=-L../..',
'PARLIBS=-L../../ -lparmgrid -lmgrid -lm', 'LIBS=-L../.. -lmgrid -lm',
'LIBS=-L../../ -lmgrid -lm',
'parallel'
] ]
if '+mpi' in spec:
make_opts.extend([
'PARCC={0}'.format(spec['mpi'].mpicc),
'PARLD={0}'.format(spec['mpi'].mpicc),
'PARLIBS=-L../.. -lparmgrid -lmgrid -lm',
'parallel'
])
else:
make_opts.append('serial')
make(*make_opts, parallel=False) make(*make_opts, parallel=False)
mkdirp(prefix.include, prefix.lib, prefix.bin) mkdirp(prefix.include, prefix.lib, prefix.bin)
install("mgridgen.h", prefix.include) install("mgridgen.h", prefix.include)
install("parmgridgen.h", prefix.include)
install("MGridGen/IMlib/libIMlib.a",
join_path(prefix.lib, 'libIMlib.a'))
install("libmgrid.a", prefix.lib) install("libmgrid.a", prefix.lib)
install("libparmgrid.a", prefix.lib) install("mgridgen", prefix.bin)
install("mgridgen", prefix.bin) if '+mpi' in spec:
install("parmgridgen", prefix.bin) install("parmgridgen.h", prefix.include)
install("libparmgrid.a", prefix.lib)
install("parmgridgen", prefix.bin)