
* changes for hipsparse,rocthrust recipes for rocm_3.7.0 * changes to rocrand for 3.7.0 * version changes
46 lines
1.7 KiB
Python
46 lines
1.7 KiB
Python
# 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 Hipsparse(CMakePackage):
|
|
"""hipSPARSE is a SPARSE marshalling library, with
|
|
multiple supported backends"""
|
|
|
|
homepage = "https://github.com/ROCmSoftwarePlatform/hipSPARSE"
|
|
git = "https://github.com/ROCmSoftwarePlatform/hipSPARSE.git"
|
|
url = "https://github.com/ROCmSoftwarePlatform/hipSPARSE/archive/rocm-3.7.0.tar.gz"
|
|
|
|
maintainers = ['srekolam', 'arjun-raj-kuppala']
|
|
|
|
version('3.7.0', sha256='a2f02d8fc6ad9a561f06dacde54ecafd30563c5c95f93819a5694e5b650dad7f')
|
|
version('3.5.0', sha256='fa16b2a307a5d9716066c2876febcbc1cef855bf0c96d235d2d8f2206a0fb69d')
|
|
|
|
depends_on('cmake@3:', type='build')
|
|
depends_on('git', type='build')
|
|
|
|
for ver in ['3.5.0', '3.7.0']:
|
|
depends_on('rocm-cmake@' + ver, type='build', when='@' + ver)
|
|
depends_on('rocm-device-libs@' + ver, type='build', when='@' + ver)
|
|
depends_on('rocsparse@' + ver, type='build', when='@' + ver)
|
|
depends_on('hip@' + ver, when='@' + ver)
|
|
depends_on('comgr@' + ver, type='build', when='@' + ver)
|
|
depends_on('hsa-rocr-dev@' + ver, type='link', when='@' + ver)
|
|
|
|
patch('e79985dccde22d826aceb3badfc643a3227979d2.patch', when='@3.5.0')
|
|
patch('530047af4a0f437dafc02f76b3a17e3b1536c7ec.patch', when='@3.5.0')
|
|
|
|
def cmake_args(self):
|
|
args = [
|
|
'-DCMAKE_CXX_STANDARD=14',
|
|
'-DBUILD_CLIENTS_SAMPLES=OFF',
|
|
'-DBUILD_CLIENTS_TESTS=OFF',
|
|
]
|
|
return args
|
|
|
|
def setup_build_environment(self, env):
|
|
env.set('CXX', self.spec['hip'].hipcc)
|