2021-01-02 15:10:28 +08:00
|
|
|
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
2020-09-05 06:02:33 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class MiopenHip(CMakePackage):
|
|
|
|
"""AMD's library for high performance machine learning primitives."""
|
|
|
|
|
|
|
|
homepage = "https://github.com/ROCmSoftwarePlatform/MIOpen"
|
2021-01-06 12:25:45 +08:00
|
|
|
url = "https://github.com/ROCmSoftwarePlatform/MIOpen/archive/rocm-4.0.0.tar.gz"
|
2020-09-05 06:02:33 +08:00
|
|
|
|
|
|
|
maintainers = ['srekolam', 'arjun-raj-kuppala']
|
|
|
|
|
2021-04-01 08:30:56 +08:00
|
|
|
version('4.1.0', sha256='068b1bc33f90fe21d3aab5697d2b3b7b930e613c54d6c5ee820768579b2b41ee')
|
2021-01-06 12:25:45 +08:00
|
|
|
version('4.0.0', sha256='84c6c17be9c1a9cd0d3a2af283433f64b07a4b9941349f498e40fed82fb205a6')
|
2020-12-10 18:55:07 +08:00
|
|
|
version('3.10.0', sha256='926e43c5583cf70d6b247f9fe45971b8b1cc9668f9c8490c142c7e8b6e268f1a')
|
|
|
|
version('3.9.0', sha256='f57d75a220c1094395cc1dccab2185c759d779751ddbb5369a6f041ec77b2156')
|
2020-10-01 06:27:40 +08:00
|
|
|
version('3.8.0', sha256='612b30d4a967bf18c7fa7aa3ef12ed558314ed04cee2775b842bf6a96cd7276f')
|
2020-09-17 23:00:45 +08:00
|
|
|
version('3.7.0', sha256='f6a6ddd8d39bb76b7f7d91e68ade3b45e0201181145658c43b967065a354b103')
|
2020-09-05 06:02:33 +08:00
|
|
|
version('3.5.0', sha256='aa362e69c4dce7f5751f0ee04c745735ea5454c8101050e9b92cc60fa3c0fb82')
|
|
|
|
|
|
|
|
variant('build_type', default='Release', values=("Release", "Debug"), description='CMake build type')
|
|
|
|
|
|
|
|
depends_on('cmake@3:', type='build')
|
2021-02-07 20:32:59 +08:00
|
|
|
depends_on('boost@1.67.0:1.73.0', type='link')
|
2020-09-24 10:29:47 +08:00
|
|
|
depends_on('pkgconfig', type='build')
|
2020-09-05 06:02:33 +08:00
|
|
|
depends_on('bzip2', type='link')
|
|
|
|
depends_on('sqlite', type='link')
|
|
|
|
depends_on('half', type='build')
|
2020-12-10 18:55:07 +08:00
|
|
|
depends_on('zlib', type='link', when='@3.9.0:')
|
|
|
|
|
|
|
|
patch('0001-Add-rocm-path-and-rocm-device-lib-path-flags.patch', when='@3.9.0:')
|
|
|
|
|
2021-04-01 08:30:56 +08:00
|
|
|
for ver in ['3.5.0', '3.7.0', '3.8.0', '3.9.0', '3.10.0', '4.0.0', '4.1.0']:
|
2020-09-05 06:02:33 +08:00
|
|
|
depends_on('hip@' + ver, type='build', when='@' + ver)
|
|
|
|
depends_on('rocm-cmake@' + ver, type='build', when='@' + ver)
|
|
|
|
depends_on('comgr@' + ver, type='link', when='@' + ver)
|
|
|
|
depends_on('llvm-amdgpu@' + ver, type='build', when='@' + ver)
|
|
|
|
depends_on('rocm-clang-ocl@' + ver, type='build', when='@' + ver)
|
|
|
|
depends_on('rocblas@' + ver, type='link', when='@' + ver)
|
|
|
|
depends_on('rocm-device-libs@' + ver, type='link', when='@' + ver)
|
|
|
|
|
2020-12-10 18:55:07 +08:00
|
|
|
def setup_build_environment(self, env):
|
|
|
|
if '@3.9.0:' in self.spec:
|
|
|
|
lib_dir = self.spec['zlib'].libs.directories[0]
|
|
|
|
env.prepend_path('LIBRARY_PATH', lib_dir)
|
|
|
|
|
2020-09-05 06:02:33 +08:00
|
|
|
def cmake_args(self):
|
2020-12-10 18:55:07 +08:00
|
|
|
hip_prefix_dir = self.spec['hip'].prefix
|
|
|
|
devicelibs_prefix_dir = self.spec['rocm-device-libs'].prefix
|
2020-09-05 06:02:33 +08:00
|
|
|
args = [
|
|
|
|
'-DMIOPEN_BACKEND=HIP',
|
|
|
|
'-DCMAKE_CXX_COMPILER={0}/bin/clang++'
|
|
|
|
.format(self.spec['llvm-amdgpu'].prefix),
|
2020-12-10 18:55:07 +08:00
|
|
|
'-DBoost_USE_STATIC_LIBS=Off',
|
|
|
|
'-DHIP_PREFIX_PATH={0}'.format(hip_prefix_dir),
|
|
|
|
'-DDEVICELIBS_PREFIX_PATH={0}/amdgcn/bitcode'
|
|
|
|
.format(devicelibs_prefix_dir)
|
2020-09-05 06:02:33 +08:00
|
|
|
]
|
|
|
|
return args
|