quicksilver: initial commit (#16811)

This commit is contained in:
Christoph Junghans 2020-05-27 01:06:25 -06:00 committed by GitHub
parent e9dcab9464
commit ac7f6b98b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,63 @@
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class Quicksilver(MakefilePackage):
"""Quicksilver is a proxy application that represents some elements of the
Mercury workload.
"""
tags = ['proxy-app']
homepage = "https://codesign.llnl.gov/quicksilver.php"
url = "https://github.com/LLNL/Quicksilver"
git = "https://github.com/LLNL/Quicksilver.git"
maintainers = ['richards12']
version('master', branch='master')
variant('openmp', default=True, description='Build with OpenMP support')
variant('mpi', default=True, description='Build with MPI support')
depends_on('mpi', when="+mpi")
build_directory = 'src'
@property
def build_targets(self):
targets = []
spec = self.spec
targets.append('CXXFLAGS={0}'.format(self.compiler.cxx11_flag))
if '+mpi' in spec:
targets.append('CXX={0}'.format(spec['mpi'].mpicxx))
else:
targets.append('CXX={0}'.format(spack_cxx))
if '+openmp+mpi' in spec:
targets.append('CPPFLAGS=-DHAVE_MPI -DHAVE_OPENMP {0}'.format(
self.compiler.openmp_flag))
elif '+openmp' in spec:
targets.append('CPPFLAGS=-DHAVE_OPENMP {0}'.format(
self.compiler.openmp_flag))
elif '+mpi' in spec:
targets.append('CPPFLAGS=-DHAVE_MPI')
if '+openmp' in self.spec:
targets.append('LDFLAGS={0}'.format(self.compiler.openmp_flag))
return targets
def install(self, spec, prefix):
mkdir(prefix.bin)
mkdir(prefix.doc)
install("src/qs", prefix.bin)
install('LICENSE.md', prefix.doc)
install('README.md', prefix.doc)
install_tree('Examples', prefix.Examples)