summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAkhil Reddy Patlolla <patlolla.akhil@gmail.com>2017-07-19 08:48:41 -0500
committerAdam J. Stewart <ajstewart426@gmail.com>2017-07-19 08:48:41 -0500
commit716512959831d5f5b91bbd1ed78f4f9108c4794a (patch)
tree5b090142e8d984c8ae154d2c0edae6f3da9da969 /var
parente3e8893ed9c183678b68ab9228e01a808f86b465 (diff)
downloadspack-716512959831d5f5b91bbd1ed78f4f9108c4794a.tar.gz
spack-716512959831d5f5b91bbd1ed78f4f9108c4794a.tar.bz2
spack-716512959831d5f5b91bbd1ed78f4f9108c4794a.tar.xz
spack-716512959831d5f5b91bbd1ed78f4f9108c4794a.zip
Added Proxy App CoHMM (#4727)
* Added Proxy App CoSP2 * Added Proxy App CoHMM * Updated PATH cohmm * Chages Fixing Minor issues * Minor Fix git add cohmm/package.py * Updated * Resolved TAG Conflict * Updated based on the codecov failure
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/cohmm/package.py61
1 files changed, 61 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/cohmm/package.py b/var/spack/repos/builtin/packages/cohmm/package.py
new file mode 100644
index 0000000000..2e033c4594
--- /dev/null
+++ b/var/spack/repos/builtin/packages/cohmm/package.py
@@ -0,0 +1,61 @@
+##############################################################################
+# 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 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
+# 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 *
+import glob
+
+
+class Cohmm(MakefilePackage):
+ """An anticipated important use-case for next-generation supercomputing
+ is multiscale modeling, in which continuum equations for large-scale
+ material deformation are augmented with high-fidelity, fine-scale
+ simulations that provide constitutive data on demand.
+ """
+ tags = ['proxy-app']
+
+ homepage = "http://www.exmatex.org/cohmm.html"
+ url = "https://github.com/exmatex/CoHMM/archive/sad.tar.gz"
+
+ version('develop', git='https://github.com/exmatex/CoHMM.git',
+ branch='sad')
+
+ variant('openmp', default=True, description='Build with OpenMP Support')
+ variant('gnuplot', default=True, description='Enable gnu plot Support')
+ depends_on('gnuplot', when='+gnuplot')
+
+ def edit(self, spec, prefix):
+ if '+openmp' in spec:
+ filter_file('DO_OPENMP = O.*', 'DO_OPENMP = ON', 'Makefile')
+ if '+gnuplot' in spec:
+ filter_file('DO_GNUPLOT = O.*', 'DO_GNUPLOT = ON', 'Makefile')
+
+ def install(self, spec, prefix):
+ mkdirp(prefix.bin)
+ mkdirp(prefix.input)
+ mkdirp(prefix.doc)
+ install('cohmm', prefix.bin)
+ install('README.md', prefix.doc)
+ install('LICENSE.md', prefix.doc)
+ for files in glob.glob('input/*.*'):
+ install(files, prefix.input) \ No newline at end of file