mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-04 13:47:35 -08:00
When any hip header included with -D__HIPCC_RTC__, it means that compiler was launched with -E -P to produce a preprocessed header. In this case not a single libstdc++ header can be used, otherwise it causes function redefinition on next attempt to include the same header elsewhere. Closes: https://bugs.gentoo.org/966188 Signed-off-by: Sv. Lockal <lockalsash@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/44725 Signed-off-by: Sam James <sam@gentoo.org>
249 lines
6.8 KiB
Bash
249 lines
6.8 KiB
Bash
# 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/rocm-systems/tree/develop/projects/clr"
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_SUBMODULES=()
|
|
EGIT_REPO_URI="https://github.com/ROCm/rocm-systems.git"
|
|
S="${WORKDIR}/${P}/projects/clr"
|
|
TEST_S="${WORKDIR}/${P}/projects/hip-tests"
|
|
HIP_S="${WORKDIR}/${P}/projects/hip"
|
|
SLOT="0/7.0"
|
|
else
|
|
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}"
|
|
KEYWORDS="~amd64"
|
|
SLOT="0/$(ver_cut 1-2)"
|
|
fi
|
|
|
|
LICENSE="MIT"
|
|
|
|
IUSE="debug +hip numa opencl test video_cards_amdgpu video_cards_nvidia"
|
|
|
|
# many 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:${SLOT}
|
|
)
|
|
video_cards_nvidia? ( dev-libs/hipother:${SLOT} )
|
|
x11-base/xorg-proto
|
|
virtual/opengl[X]
|
|
numa? ( sys-process/numactl )
|
|
"
|
|
BDEPEND="
|
|
video_cards_amdgpu? (
|
|
dev-util/hipcc:${SLOT}
|
|
)
|
|
test? (
|
|
media-libs/freeglut
|
|
)
|
|
"
|
|
RDEPEND="${DEPEND}
|
|
~dev-libs/rocm-core-${PV}
|
|
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}
|
|
dev-libs/rocm-device-libs:${SLOT}
|
|
dev-libs/roct-thunk-interface:${SLOT}
|
|
)
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-6.1.1-fix-musl.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}-7.0.2-fix-libcxx-noinline.patch"
|
|
)
|
|
|
|
QA_FLAGS_IGNORED="usr/lib.*/libhiprtc-builtins.*"
|
|
|
|
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
|
|
|
|
# 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 -e "s/ -Werror//g" -i "hipamd/src/CMakeLists.txt" || die
|
|
|
|
# do not install /usr/share/doc/${P}-asan
|
|
sed -e "/asan COMPONENT asan/d" -i hipamd/packaging/CMakeLists.txt || die
|
|
|
|
sed -e "s/@HIP_INSTALLS_HIPCC@/ON/g" -i hipamd/hip-config.cmake.in || die
|
|
|
|
# skip installation of hipcc: installed via dev-util/hipcc
|
|
sed -e "s/NOT \${HIPCC_BIN_DIR}/INSTALL_HIPCC AND NOT \${HIPCC_BIN_DIR}/" \
|
|
-i "hipamd/CMakeLists.txt" || die
|
|
|
|
sed -e "/cmake_minimum_required/ s/3\.[35]/3.10/" \
|
|
-i "hipamd/src/hiprtc/cmake/hiprtc-config.cmake.in" \
|
|
-i opencl/khronos/icd/CMakeLists.txt \
|
|
-i opencl/khronos/headers/opencl2.2/tests/CMakeLists.txt || die
|
|
|
|
cmake_src_prepare
|
|
|
|
if use test; then
|
|
local PATCHES=(
|
|
"${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
|
|
|
|
# policy not supported by CMake 4.0; and not needed
|
|
sed -e '/cmake_policy(SET CMP0037 OLD)/d' -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
|
|
|
|
-DOpenGL_GL_PREFERENCE="GLVND"
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_Git=ON
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_NUMA="$(usex !numa)"
|
|
-DCMAKE_REQUIRE_FIND_PACKAGE_NUMA="$(usex numa)"
|
|
)
|
|
|
|
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
|
|
)
|
|
|
|
hip_test_wrapper cmake_src_test
|
|
}
|