summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorjiseung <anna.jiseung@gmail.com>2017-07-19 08:50:53 -0500
committerAdam J. Stewart <ajstewart426@gmail.com>2017-07-19 08:50:53 -0500
commit60cffbb9d0ed484cf88ddfbf9009c95fc1e23bdb (patch)
tree22f8e92f4bec286ec952ca13716b5d16b469c9a8 /var
parenta6cac6ac9925b816e73b32b7263d03bd42853a1e (diff)
downloadspack-60cffbb9d0ed484cf88ddfbf9009c95fc1e23bdb.tar.gz
spack-60cffbb9d0ed484cf88ddfbf9009c95fc1e23bdb.tar.bz2
spack-60cffbb9d0ed484cf88ddfbf9009c95fc1e23bdb.tar.xz
spack-60cffbb9d0ed484cf88ddfbf9009c95fc1e23bdb.zip
new package PENNANT added (#4708)
* new package PENNANT * made adjustments based on comments * edited logic for mpi variant * replaced with 'else' * prefix.bin instead of 'bin'
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/pennant/package.py99
1 files changed, 99 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/pennant/package.py b/var/spack/repos/builtin/packages/pennant/package.py
new file mode 100644
index 0000000000..b8e71c7f31
--- /dev/null
+++ b/var/spack/repos/builtin/packages/pennant/package.py
@@ -0,0 +1,99 @@
+##############################################################################
+# Copyright (c) 2013-2016, 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.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# 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 *
+
+
+class Pennant(MakefilePackage):
+ """PENNANT is an unstructured mesh physics mini-app designed
+ for advanced architecture research. It contains mesh data
+ structures and a few physics algorithms adapted
+ from the LANL rad-hydro code FLAG, and gives a sample of
+ the typical memory access patterns of FLAG.
+ """
+
+ homepage = "https://github.com/lanl/PENNANT"
+ url = "https://github.com/lanl/PENNANT/archive/pennant_v0.9.tar.gz"
+ tags = ['proxy-app']
+
+ version('0.9', '4f21ba3836b2721436277308c2e33f45')
+ version('0.8', 'a1afff4914fef8140c3024a02d7c993c')
+ version('0.7', 'd642a030d5388f65f799504803794a4e')
+ version('0.6', '8ab2d4b47ec9870643bfe6f262cd47a4')
+ version('0.5', '534547878c698b9926e2886c74e10831')
+ version('0.4', '0f67d8da0a92bd42d92a4823d3e4dbe1')
+
+ variant('mpi', default=True, description='Build with MPI support')
+ variant('openmp', default=True, description='Build with OpenMP support')
+ variant('debug', default=False, description='Enable debug')
+
+ depends_on('mpi', when='+mpi')
+
+ def edit(self, spec, prefix):
+ makefile = FileFilter('Makefile')
+ debug = '-g'
+ opt = '-O3'
+
+ if self.compiler.name == 'intel':
+ opt += ' -fast -fno-alias'
+ if self.compiler.name == 'pgi':
+ opt += ' -fastsse'
+
+ makefile.filter(
+ 'CXXFLAGS_DEBUG .*',
+ 'CXXFLAGS_DEBUG := {0}'.format(debug))
+ makefile.filter(
+ 'CXXFLAGS_OPT .*',
+ 'CXXFLAGS_OPT := {0}'.format(opt))
+ makefile.filter(
+ 'CXXFLAGS_OPENMP .*',
+ 'CXXFLAGS_OPENMP := {0}'.format(self.compiler.openmp_flag))
+
+ if '+mpi' in spec:
+ makefile.filter(
+ 'CXX .*',
+ 'CXX := {0}'.format(spec['mpi'].mpicxx))
+ else:
+ makefile.filter('-DUSE_MPI', '#')
+ makefile.filter('CXX .*', 'CXX := c++')
+
+ if '+openmp' not in spec:
+ makefile.filter('.*CXXFLAGS_OPENMP.*', '#')
+
+ if '+debug' in spec:
+ makefile.filter(
+ '.*(CXXFLAGS_OPT).*',
+ 'CXXFLAGS := $(CXXFLAGS_DEBUG)')
+
+ def install(self, spec, prefix):
+
+ def install_dir(dirname):
+ install_tree(dirname, join_path(prefix, dirname))
+
+ mkdirp(prefix.bin)
+ install('build/pennant', prefix.bin)
+ install_dir('doc')
+ install_dir('test')
+ install('LICENSE', prefix)
+ install('README', prefix)