diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/suite-sparse/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/suite-sparse/package.py | 108 |
1 files changed, 59 insertions, 49 deletions
diff --git a/var/spack/repos/builtin/packages/suite-sparse/package.py b/var/spack/repos/builtin/packages/suite-sparse/package.py index aa22e1ecce..429a7f0706 100644 --- a/var/spack/repos/builtin/packages/suite-sparse/package.py +++ b/var/spack/repos/builtin/packages/suite-sparse/package.py @@ -1,13 +1,13 @@ ############################################################################## -# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC. +# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC. # Produced at the Lawrence Livermore National Laboratory. # # This file is part of Spack. # Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved. # LLNL-CODE-647188 # -# For details, see https://github.com/llnl/spack -# Please also see the LICENSE file for our notice and the LGPL. +# For details, see https://github.com/spack/spack +# Please also see the NOTICE and LICENSE files for our notice and the LGPL. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License (as @@ -32,11 +32,15 @@ class SuiteSparse(Package): homepage = 'http://faculty.cse.tamu.edu/davis/suitesparse.html' url = 'http://faculty.cse.tamu.edu/davis/SuiteSparse/SuiteSparse-4.5.1.tar.gz' + version('4.5.5', '0a5b38af0016f009409a9606d2f1b555') + version('4.5.4', 'f6ab689442e64a1624a47aa220072d1b') version('4.5.3', '8ec57324585df3c6483ad7f556afccbd') version('4.5.1', 'f0ea9aad8d2d1ffec66a5b6bfeff5319') - variant('tbb', default=True, description='Build with Intel TBB') - variant('fpic', default=True, description='Build position independent code (required to link with shared libraries)') + variant('tbb', default=False, description='Build with Intel TBB') + variant('pic', default=True, description='Build position independent code (required to link with shared libraries)') + variant('cuda', default=False, description='Build with CUDA') + variant('openmp', default=False, description='Build with OpenMP') depends_on('blas') depends_on('lapack') @@ -46,7 +50,12 @@ class SuiteSparse(Package): # flags does not seem to be used, which leads to linking errors on Linux. depends_on('tbb', when='@4.5.3:+tbb') - patch('tbb_453.patch', when='@4.5.3') + depends_on('cuda', when='+cuda') + + patch('tbb_453.patch', when='@4.5.3:+tbb') + + # This patch removes unsupported flags for pgi compiler + patch('pgi.patch', when='%pgi') def install(self, spec, prefix): # The build system of SuiteSparse is quite old-fashioned. @@ -55,56 +64,57 @@ class SuiteSparse(Package): # logic in it. Any kind of customization will need to go through # filtering of that file - make_args = ['INSTALL=%s' % prefix] + pic_flag = self.compiler.pic_flag if '+pic' in spec else '' - # inject Spack compiler wrappers - make_args.extend([ + make_args = [ + 'INSTALL=%s' % prefix, + # By default, the Makefile uses the Intel compilers if + # they are found. The AUTOCC flag disables this behavior, + # forcing it to use Spack's compiler wrappers. 'AUTOCC=no', - 'CC=cc', - 'CXX=c++', - 'F77=f77', - 'CUDA_ROOT =', - 'GPU_BLAS_PATH =', - 'GPU_CONFIG =', - 'CUDA_PATH =', - 'CUDART_LIB =', - 'CUBLAS_LIB =', - 'CUDA_INC_PATH =', - 'NV20 =', - 'NV30 =', - 'NV35 =', - 'NVCC = echo', - 'NVCCFLAGS =', - ]) - if '+fpic' in spec: - make_args.extend(['CFLAGS=-fPIC', 'FFLAGS=-fPIC']) - - # use Spack's metis in CHOLMOD/Partition module, - # otherwise internal Metis will be compiled - make_args.extend([ - 'MY_METIS_LIB=-L%s -lmetis' % spec['metis'].prefix.lib, + # CUDA=no does NOT disable cuda, it only disables internal search + # for CUDA_PATH. If in addition the latter is empty, then CUDA is + # completely disabled. See + # [SuiteSparse/SuiteSparse_config/SuiteSparse_config.mk] for more. + 'CUDA=no', + 'CUDA_PATH=%s' % (spec['cuda'].prefix if '+cuda' in spec else ''), + 'CFOPENMP=%s' % (self.compiler.openmp_flag + if '+openmp' in spec else ''), + 'CFLAGS=-O3 %s' % pic_flag, + # Both FFLAGS and F77FLAGS are used in SuiteSparse makefiles; + # FFLAGS is used in CHOLMOD, F77FLAGS is used in AMD and UMFPACK. + 'FFLAGS=%s' % pic_flag, + 'F77FLAGS=%s' % pic_flag, + # use Spack's metis in CHOLMOD/Partition module, + # otherwise internal Metis will be compiled + 'MY_METIS_LIB=%s' % spec['metis'].libs.ld_flags, 'MY_METIS_INC=%s' % spec['metis'].prefix.include, - ]) + # Make sure Spack's Blas/Lapack is used. Otherwise System's + # Blas/Lapack might be picked up. Need to add -lstdc++, following + # with the TCOV path of SparseSuite 4.5.1's Suitesparse_config.mk, + # even though this fix is ugly + 'BLAS=%s' % (spec['blas'].libs.ld_flags + ( + '-lstdc++' if '@4.5.1' in spec else '')), + 'LAPACK=%s' % spec['lapack'].libs.ld_flags, + ] + + # SuiteSparse defaults to using '-fno-common -fexceptions' in + # CFLAGS, but not all compilers use the same flags for these + # optimizations + if any([x in spec + for x in ('%clang', '%gcc', '%intel')]): + make_args += ['CFLAGS+=-fno-common -fexceptions'] + elif '%pgi' in spec: + make_args += ['CFLAGS+=--exceptions'] + + if '%xl' in spec or '%xl_r' in spec: + make_args += ['CFLAGS+=-DBLAS_NO_UNDERSCORE'] # Intel TBB in SuiteSparseQR if 'tbb' in spec: - make_args.extend([ + make_args += [ 'SPQR_CONFIG=-DHAVE_TBB', 'TBB=-L%s -ltbb' % spec['tbb'].prefix.lib, - ]) - - # Make sure Spack's Blas/Lapack is used. Otherwise System's - # Blas/Lapack might be picked up. - blas = spec['blas'].blas_libs.ld_flags - lapack = spec['lapack'].lapack_libs.ld_flags - if '@4.5.1' in spec: - # adding -lstdc++ is clearly an ugly way to do this, but it follows - # with the TCOV path of SparseSuite 4.5.1's Suitesparse_config.mk - blas += ' -lstdc++' - - make_args.extend([ - 'BLAS=%s' % blas, - 'LAPACK=%s' % lapack - ]) + ] make('install', *make_args) |