2020-10-10 06:25:06 +08:00
|
|
|
# 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 *
|
|
|
|
|
|
|
|
|
2020-11-19 03:52:21 +08:00
|
|
|
class Camp(CMakePackage, CudaPackage, HipPackage):
|
2020-10-10 06:25:06 +08:00
|
|
|
"""
|
|
|
|
Compiler agnostic metaprogramming library providing concepts,
|
|
|
|
type operations and tuples for C++ and cuda
|
|
|
|
"""
|
|
|
|
|
|
|
|
homepage = "https://github.com/LLNL/camp"
|
|
|
|
git = "https://github.com/LLNL/camp.git"
|
2020-10-27 22:52:28 +08:00
|
|
|
url = "https://github.com/LLNL/camp/archive/v0.1.0.tar.gz"
|
2020-10-10 06:25:06 +08:00
|
|
|
|
|
|
|
version('master', branch='master', submodules='True')
|
2020-10-27 22:52:28 +08:00
|
|
|
version('0.1.0', sha256='fd4f0f2a60b82a12a1d9f943f8893dc6fe770db493f8fae5ef6f7d0c439bebcc')
|
2020-10-10 06:25:06 +08:00
|
|
|
|
|
|
|
depends_on('cmake@3.8:', type='build')
|
|
|
|
depends_on('cmake@3.9:', type='build', when="+cuda")
|
|
|
|
|
|
|
|
def cmake_args(self):
|
|
|
|
spec = self.spec
|
|
|
|
|
|
|
|
options = []
|
|
|
|
|
|
|
|
if '+cuda' in spec:
|
|
|
|
options.extend([
|
|
|
|
'-DENABLE_CUDA=ON',
|
|
|
|
'-DCUDA_TOOLKIT_ROOT_DIR=%s' % (spec['cuda'].prefix)])
|
|
|
|
|
|
|
|
if not spec.satisfies('cuda_arch=none'):
|
|
|
|
cuda_arch = spec.variants['cuda_arch'].value
|
|
|
|
options.append('-DCUDA_ARCH=sm_{0}'.format(cuda_arch[0]))
|
|
|
|
flag = '-arch sm_{0}'.format(cuda_arch[0])
|
|
|
|
options.append('-DCMAKE_CUDA_FLAGS:STRING={0}'.format(flag))
|
|
|
|
else:
|
|
|
|
options.append('-DENABLE_CUDA=OFF')
|
|
|
|
|
2020-10-31 04:33:54 +08:00
|
|
|
if '+hip' in spec:
|
|
|
|
arch = self.spec.variants['amdgpu_target'].value
|
|
|
|
options.extend([
|
|
|
|
'-DENABLE_HIP=ON',
|
|
|
|
'-DHIP_ROOT_DIR={0}'.format(spec['hip'].prefix),
|
2020-11-19 03:52:21 +08:00
|
|
|
'-DHIP_HIPCC_FLAGS=--amdgpu-target={0}'.format(arch)])
|
2020-10-31 04:33:54 +08:00
|
|
|
else:
|
|
|
|
options.append('-DENABLE_HIP=OFF')
|
|
|
|
|
2020-10-27 05:12:03 +08:00
|
|
|
options.append('-DENABLE_TESTS={0}'.format(
|
|
|
|
"On" if self.run_tests else "Off"))
|
2020-10-10 06:25:06 +08:00
|
|
|
|
|
|
|
return options
|