| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 6.4.3-r2 | 8 | ~amd64 | 0/$(ver_cut 1-2) |
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DOCS_BUILDER="doxygen"
DOCS_DEPEND="media-gfx/graphviz"
ROCM_SKIP_GLOBALS=1
LLVM_COMPAT=( 20 )
inherit cmake docs flag-o-matic llvm-r1 rocm
TEST_PV=${PV}
DESCRIPTION="C++ Heterogeneous-Compute Interface for Portability"
HOMEPAGE="https://github.com/ROCm/clr"
SRC_URI="
https://github.com/ROCm/clr/archive/refs/tags/rocm-${PV}.tar.gz -> rocm-clr-${PV}.tar.gz
https://github.com/ROCm/HIP/archive/refs/tags/rocm-${PV}.tar.gz -> hip-${PV}.tar.gz
test? (
https://github.com/ROCm/hip-tests/archive/refs/tags/rocm-${TEST_PV}.tar.gz -> hip-test-${TEST_PV}.tar.gz
)
"
S="${WORKDIR}/clr-rocm-${PV}/"
TEST_S="${WORKDIR}/hip-tests-rocm-${TEST_PV}/catch"
HIP_S="${WORKDIR}/hip-rocm-${PV}"
LICENSE="MIT"
SLOT="0/$(ver_cut 1-2)"
KEYWORDS="~amd64"
IUSE="debug +hip opencl test video_cards_amdgpu video_cards_nvidia"
# some tests are broken
RESTRICT="test"
REQUIRED_USE="
|| ( hip opencl )
^^ ( video_cards_amdgpu video_cards_nvidia )
"
DEPEND="
video_cards_amdgpu? (
dev-util/rocminfo:${SLOT}
dev-libs/rocm-comgr:${SLOT}
>=dev-libs/rocr-runtime-6.4.3:${SLOT}
)
video_cards_nvidia? (
dev-libs/hipother:${SLOT}
)
x11-base/xorg-proto
virtual/opengl
sys-process/numactl
"
BDEPEND="
video_cards_amdgpu? (
dev-util/hipcc:${SLOT}[${LLVM_USEDEP}]
)
test? (
media-libs/freeglut
)
"
RDEPEND="${DEPEND}
opencl? (
!dev-libs/opencl-icd-loader
!dev-libs/rocm-opencl-runtime
!dev-util/clinfo
!dev-util/opencl-headers
)
video_cards_amdgpu? (
dev-util/hipcc:${SLOT}[${LLVM_USEDEP}]
dev-libs/rocm-device-libs:${SLOT}
dev-libs/roct-thunk-interface:${SLOT}
)
"
PATCHES=(
"${FILESDIR}/${PN}-5.7.1-no_asan_doc.patch"
"${FILESDIR}/${PN}-6.3.0-install.patch"
"${FILESDIR}/${PN}-6.1.1-fix-musl.patch"
"${FILESDIR}/${PN}-6.2.4-libcxx.patch"
"${FILESDIR}/${PN}-6.3.0-no-isystem-usr-include.patch"
"${FILESDIR}/${PN}-6.3.0-clr-fix-libcxx.patch"
"${FILESDIR}/${PN}-6.4.1-no-glibcxx-assert.patch"
"${FILESDIR}/${PN}-6.4.1-bad-assert.patch"
)
hip_test_wrapper() {
local CMAKE_USE_DIR="${TEST_S}"
local BUILD_DIR="${TEST_S}_build"
cd "${TEST_S}" || die
"${@}"
}
src_prepare() {
pushd "${HIP_S}" >/dev/null || die
eapply "${FILESDIR}/${PN}-6.3.0-hip-fix-libcxx.patch"
# hipamd is itself built by cmake, and should never provide a
# FindHIP.cmake module. But the reality is some package relies on it.
# Set HIP and HIP Clang paths directly, don't search using heuristics
sed -e "s:# Search for HIP installation:set(HIP_ROOT_DIR \"${EPREFIX}/usr\"):" \
-e "s:#Set HIP_CLANG_PATH:set(HIP_CLANG_PATH \"$(get_llvm_prefix -d)/bin\"):" \
-i "cmake/FindHIP.cmake" || die
popd >/dev/null || die
sed "s/ -Werror//g" -i "hipamd/src/CMakeLists.txt" || die
sed "/cmake_minimum_required/ s/3\.3/3.5/" -i "hipamd/src/hiprtc/cmake/hiprtc-config.cmake.in" || die
cmake_src_prepare
if use test; then
local PATCHES=(
"${FILESDIR}"/hip-test-6.3.0-hipcc-system-install.patch
"${FILESDIR}"/hip-test-5.7.1-remove-incompatible-flag.patch
"${FILESDIR}"/hip-test-6.1.1-fix-musl.patch
)
sed -e "s/-Werror //" -e "s/-Wall -Wextra //" -i "${TEST_S}/CMakeLists.txt" || die
hip_test_wrapper cmake_src_prepare
fi
}
src_configure() {
# -Werror=strict-aliasing
# https://bugs.gentoo.org/858383
# https://github.com/ROCm/clr/issues/64
#
# Do not trust it for LTO either
append-flags -fno-strict-aliasing
filter-lto
use debug && CMAKE_BUILD_TYPE="Debug"
# Fix ld.lld linker error: https://github.com/ROCm/HIP/issues/3382
# See also: https://github.com/gentoo/gentoo/pull/29097
append-ldflags $(test-flags-CCLD -Wl,--undefined-version)
local mycmakeargs=(
-DCMAKE_PREFIX_PATH="$(get_llvm_prefix)"
-DCMAKE_SKIP_RPATH=ON
-D__HIP_ENABLE_PCH=OFF
-DCLR_BUILD_HIP="$(usex hip)"
-DCLR_BUILD_OCL="$(usex opencl)"
-DHIP_COMMON_DIR="${HIP_S}"
-DHIP_ENABLE_ROCPROFILER_REGISTER=OFF
-DHIPCC_BIN_DIR="${EPREFIX}/usr/bin"
-DROCM_PATH="${EPREFIX}/usr"
-DUSE_PROF_API=OFF
-DFILE_REORG_BACKWARD_COMPATIBILITY=OFF
-DOpenGL_GL_PREFERENCE="GLVND"
-DCMAKE_DISABLE_FIND_PACKAGE_Git=ON
)
if use video_cards_amdgpu; then
mycmakeargs+=(
-DHIP_PLATFORM="amd"
)
elif use video_cards_nvidia; then
mycmakeargs+=(
-DHIPNV_DIR="${EPREFIX}/usr"
-DHIP_PLATFORM="nvidia"
)
fi
cmake_src_configure
if use test; then
local mycmakeargs=(
-DCMAKE_MODULE_PATH="${TEST_S}/external/Catch2/cmake/Catch2"
-DROCM_PATH="${EPREFIX}/usr"
-DCMAKE_NO_SYSTEM_FROM_IMPORTED=ON
-Wno-dev
# 1) Use custom build of hipamd instead of system one
# 2) Build fails with libc++: https://github.com/llvm/llvm-project/issues/119076
-DCMAKE_CXX_FLAGS="-I${BUILD_DIR}/hipamd/include -stdlib=libstdc++"
-DCMAKE_EXE_LINKER_FLAGS="-L${BUILD_DIR}/hipamd/lib"
)
if use video_cards_amdgpu; then
mycmakeargs+=(
-DHIP_PLATFORM="amd"
)
elif use video_cards_nvidia; then
mycmakeargs+=(
-DHIP_PLATFORM="nvidia"
)
fi
hip_test_wrapper cmake_src_configure
fi
}
src_compile() {
cmake_src_compile
if use test; then
hip_test_wrapper cmake_src_compile build_tests
fi
}
src_test() {
check_amdgpu
export LD_LIBRARY_PATH="${BUILD_DIR}/hipamd/lib"
# TODO: research how to test Vulkan-related features.
local CMAKE_SKIP_TESTS=(
Unit_hipExternalMemoryGetMappedBuffer_Vulkan_Positive_Read_Write
Unit_hipExternalMemoryGetMappedBuffer_Vulkan_Negative_Parameters
Unit_hipImportExternalMemory_Vulkan_Negative_Parameters
Unit_hipWaitExternalSemaphoresAsync_Vulkan_Positive_Binary_Semaphore
Unit_hipWaitExternalSemaphoresAsync_Vulkan_Positive_Multiple_Semaphores
Unit_hipWaitExternalSemaphoresAsync_Vulkan_Negative_Parameters
Unit_hipSignalExternalSemaphoresAsync_Vulkan_Positive_Binary_Semaphore
Unit_hipSignalExternalSemaphoresAsync_Vulkan_Positive_Multiple_Semaphores
Unit_hipSignalExternalSemaphoresAsync_Vulkan_Negative_Parameters
Unit_hipImportExternalSemaphore_Vulkan_Negative_Parameters
Unit_hipDestroyExternalSemaphore_Vulkan_Negative_Parameters
)
MAKEOPTS="-j1" hip_test_wrapper cmake_src_test
}
src_install() {
cmake_src_install
# add version file that is required by some libraries
mkdir "${ED}"/usr/include/rocm-core || die
cat <<-EOF > "${ED}"/usr/include/rocm-core/rocm_version.h || die
#pragma once
#define ROCM_VERSION_MAJOR $(ver_cut 1)
#define ROCM_VERSION_MINOR $(ver_cut 2)
#define ROCM_VERSION_PATCH $(ver_cut 3)
#define ROCM_BUILD_INFO "$(ver_cut 1-3).0-9999-unknown"
EOF
dosym -r /usr/include/rocm-core/rocm_version.h /usr/include/rocm_version.h
if use video_cards_nvidia; then
newenvd - 99hipconfig <<-EOF
HIP_PLATFORM="nvidia"
HIP_RUNTIME="cuda"
CUDA_PATH="${EPREFIX}/opt/cuda"
EOF
fi
}
video_cards_amdgpu? ( dev-util/rocminfo:0/$(ver_cut 1-2) dev-libs/rocm-comgr:0/$(ver_cut 1-2) >=dev-libs/rocr-runtime-6.4.3:0/$(ver_cut 1-2) ) video_cards_nvidia? ( dev-libs/hipother:0/$(ver_cut 1-2) ) x11-base/xorg-proto virtual/opengl sys-process/numactl
video_cards_amdgpu? (
dev-util/rocminfo:0/$(ver_cut 1-2)
dev-libs/rocm-comgr:0/$(ver_cut 1-2)
>=dev-libs/rocr-runtime-6.4.3:0/$(ver_cut 1-2)
)
video_cards_nvidia? (
dev-libs/hipother:0/$(ver_cut 1-2)
)
x11-base/xorg-proto
virtual/opengl
sys-process/numactl
opencl? (
!dev-libs/opencl-icd-loader
!dev-libs/rocm-opencl-runtime
!dev-util/clinfo
!dev-util/opencl-headers
)
video_cards_amdgpu? (
dev-util/hipcc:0/$(ver_cut 1-2)[${LLVM_USEDEP}]
dev-libs/rocm-device-libs:0/$(ver_cut 1-2)
dev-libs/roct-thunk-interface:0/$(ver_cut 1-2)
)
video_cards_amdgpu? (
dev-util/hipcc:0/$(ver_cut 1-2)[${LLVM_USEDEP}]
)
test? (
media-libs/freeglut
)