hpx5: Convert to AutotoolsPackage, several updates (#3456)

* hpx5: Convert to AutotoolsPackage, several updates

- convert to AutotoolsPackage
- add several variants
- add several dependencies
- add new version 4.0.0
- don’t set compiler flags explicitly

* hpx5: Don’t import os

* hpx5: Clean up configure arguments

* hpx5: Correct libffi configure declaration

Also add new variant “+instrumentation”.

* hpx5: Correct CUDA, MPI, OpenCL configuration

* hpx5: Use built-in libffi

Spack’s libffi installs its headers in a strange place, and hpx5 can’t pick them up.
This commit is contained in:
Erik Schnetter 2017-03-17 10:11:02 -04:00 committed by Adam J. Stewart
parent e7bf8034b0
commit 19b3afebc9

View file

@ -22,11 +22,11 @@
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
from spack import *
import os
class Hpx5(Package):
class Hpx5(AutotoolsPackage):
"""The HPX-5 Runtime System. HPX-5 (High Performance ParalleX) is an
open source, portable, performance-oriented runtime developed at
CREST (Indiana University). HPX-5 provides a distributed
@ -39,6 +39,7 @@ class Hpx5(Package):
homepage = "http://hpx.crest.iu.edu"
url = "http://hpx.crest.iu.edu/release/hpx-3.1.0.tar.gz"
version('4.0.0', 'b40dc03449ae1039cbb48ee149952b22')
version('3.1.0', '9e90b8ac46788c009079632828c77628')
version('2.0.0', '3d2ff3aab6c46481f9ec65c5b2bfe7a6')
version('1.3.0', '2260ecc7f850e71a4d365a43017d8cee')
@ -46,33 +47,88 @@ class Hpx5(Package):
version('1.1.0', '646afb460ecb7e0eea713a634933ce4f')
version('1.0.0', '8020822adf6090bd59ed7fe465f6c6cb')
variant('cuda', default=False, description='Enable CUDA support')
variant('cxx11', default=False, description='Enable C++11 hpx++ interface')
variant('debug', default=False, description='Build debug version of HPX-5')
variant('photon', default=False, description='Enable Photon support')
variant('instrumentation', default=False, description='Enable instrumentation (may affect performance)')
variant('metis', default=False, description='Enable METIS support')
variant('mpi', default=False, description='Enable MPI support')
variant('opencl', default=False, description='Enable OpenCL support')
variant('photon', default=False, description='Enable Photon support')
variant('pic', default=True, description='Produce position-independent code')
depends_on("autoconf", type='build')
depends_on("automake", type='build')
depends_on("hwloc")
depends_on("hwloc +cuda", when='+cuda')
# Note: We could disable CUDA support via "hwloc ~cuda"
depends_on("jemalloc")
# depends_on("libffi")
depends_on("libtool", type='build')
# depends_on("lz4") # hpx5 always builds its own lz4
depends_on("m4", type='build')
depends_on("metis", when='+metis')
depends_on("mpi", when='+mpi')
depends_on("mpi", when='+photon')
depends_on("opencl", when='+opencl')
# depends_on("papi")
depends_on("pkg-config", type='build')
configure_directory = "hpx"
build_directory = "spack-build"
def configure_args(self):
spec = self.spec
args = [
'--enable-agas', # make this a variant?
'--enable-jemalloc', # make this a variant?
'--enable-percolation', # make this a variant?
# '--enable-rebalancing', # this seems broken
'--with-hwloc=hwloc',
'--with-jemalloc=jemalloc',
# Spack's libffi installs its headers strangely,
# leading to problems
'--with-libffi=contrib',
# '--with-papi=papi', # currently disabled in HPX
]
if '+cxx11' in spec:
args += ['--enable-hpx++']
def install(self, spec, prefix):
extra_args = []
if '+debug' in spec:
extra_args.extend([
'--enable-debug',
'CFLAGS=-g -O0'
])
else:
extra_args.append('CFLAGS=-O3')
args += ['--enable-debug']
if '+mpi' in spec:
extra_args.append('--enable-mpi')
if '+instrumentation' in spec:
args += ['--enable-instrumentation']
if '+mpi' in spec or '+photon' in spec:
# photon requires mpi
args += ['--enable-mpi']
# Choose pkg-config name for MPI library
if '^openmpi' in spec:
args += ['--with-mpi=ompi-cxx']
elif '^mpich' in spec:
args += ['--with-mpi=mpich']
elif '^mvapich2' in spec:
args += ['--with-mpi=mvapich2-cxx']
else:
args += ['--with-mpi=system']
# METIS does not support pkg-config; HPX will pick it up automatically
# if '+metis' in spec:
# args += ['--with-metis=???']
if '+opencl' in spec:
args += ['--enable-opencl']
if '^pocl' in spec:
args += ['--with-opencl=pocl']
else:
args += ['--with-opencl=system']
if '+photon' in spec:
extra_args.extend([
'--enable-mpi',
'--enable-photon'
])
args += ['--enable-photon']
os.chdir("./hpx/")
configure('--prefix=%s' % prefix, *extra_args)
make()
make("install")
if '+pic' in spec:
args += ['--with-pic']
return args