commit: 6e35a3cab932fa1ca748543e33fe0dd051df99ac Author: Sv. Lockal <lockalsash <AT> gmail <DOT> com> AuthorDate: Mon Feb 16 05:31:24 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Mar 6 00:44:08 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e35a3ca
sci-libs/hipCUB: add 7.2.0 Signed-off-by: Sv. Lockal <lockalsash <AT> gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/45826 Signed-off-by: Sam James <sam <AT> gentoo.org> sci-libs/hipCUB/Manifest | 1 + .../files/hipCUB-7.2.0-no-tests-install.patch | 23 ++++++++ sci-libs/hipCUB/hipCUB-7.2.0.ebuild | 67 ++++++++++++++++++++++ 3 files changed, 91 insertions(+) diff --git a/sci-libs/hipCUB/Manifest b/sci-libs/hipCUB/Manifest index 095ee56c35b9..fa73b33791b0 100644 --- a/sci-libs/hipCUB/Manifest +++ b/sci-libs/hipCUB/Manifest @@ -2,3 +2,4 @@ DIST hipCUB-6.3.3.tar.gz 387580 BLAKE2B e0b605835be2b685c1cfa099a807e30fa061af8b DIST hipCUB-6.4.3.tar.gz 419173 BLAKE2B 7e1e707210191eee00aab01f8768a272f1fb5c35bb9e0635fe32ad50f4a8b56634d5f097f5eb2d1d5625f30f62450368a25a95ac2ba8fe85da2effd8efd669c9 SHA512 fb8018cf6200a468601149b6508b50944a27c3f7562012fef39e3a0ca13ed5ff597b1a3ad9e02273b70020ebd19ed10322e46d324f09fcf32a4f363e0ba72036 DIST hipCUB-7.0.2.tar.gz 442494 BLAKE2B 62357955317e612f49023db12f844ea04ed8c16930000ce805c5a4bdd9c53207b6a064a5770bfb74f01f06872f72f0649b8322dda704816e608c2691ab6526cc SHA512 2c26a622c82e53d5e06cfb45066aac4bb4f7702b96d7753eb9acc0266fb8bc9c3f3068dba2acf023b1644be95bbe48e3a554db053e446757651615f9bd5ef7a6 DIST hipCUB-7.1.0.tar.gz 471831 BLAKE2B edb368f37577600762a3c88d2af4c99e1696d033b66e6afb251e52b2bcc6baf8ed1375f75b69717421f449cada6a010eb652fceace5b408dbb3c6be004e8f7cc SHA512 165d08b75ef81becfce3c279f7ac8aaf0efee79d5d450450a8396b95f043b14716d8ac9c00047bec32ba21913b64ded51898e903959842fbf7d5a97328c7281a +DIST hipcub-7.2.0.tar.gz 472731 BLAKE2B e1ccb8e37edf5e79191ff9d5308714f582d7fcb8d8e3ebcc0fd1f5062fd87efa3b1edf9664e90d326bd5422f3029a17bdfef6f2d2d6f2e1be5b6eff79fb19367 SHA512 51249e1ff3cf801e6a843a4aac961e41be8e2c7d3fe1662d37f7e7d1d8cf6697bbd0899a7252649cae37bc0113458efd74f889fcb7bcd628471016543c5a7ea6 diff --git a/sci-libs/hipCUB/files/hipCUB-7.2.0-no-tests-install.patch b/sci-libs/hipCUB/files/hipCUB-7.2.0-no-tests-install.patch new file mode 100644 index 000000000000..2b9770fa4cd0 --- /dev/null +++ b/sci-libs/hipCUB/files/hipCUB-7.2.0-no-tests-install.patch @@ -0,0 +1,23 @@ +diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt +index 3361e20..5744779 100644 +--- a/test/CMakeLists.txt ++++ b/test/CMakeLists.txt +@@ -58,7 +58,6 @@ function(add_relative_test test_name test_target) + ENVIRONMENT "LLVM_PROFILE_FILE=${PROFILE_DIR}/profraw/hipcub-coverage_%m.profraw" + ) + endif() +- rocm_install(TARGETS ${test_target} COMPONENT tests) + file(APPEND "${INSTALL_TEST_FILE}" "add_test(${test_name} \"../${EXE_NAME}\")\n") + endfunction() + +@@ -101,10 +100,3 @@ if(BUILD_CODE_COVERAGE) + WORKING_DIRECTORY ${CMAKE_BINARY_DIR} + ) + endif() +- +-rocm_install( +- FILES "${INSTALL_TEST_FILE}" +- DESTINATION "${CMAKE_INSTALL_BINDIR}/${PROJECT_NAME}" +- COMPONENT tests +- RENAME "CTestTestfile.cmake" +-) diff --git a/sci-libs/hipCUB/hipCUB-7.2.0.ebuild b/sci-libs/hipCUB/hipCUB-7.2.0.ebuild new file mode 100644 index 000000000000..dd8470c3afad --- /dev/null +++ b/sci-libs/hipCUB/hipCUB-7.2.0.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ROCM_VERSION=${PV} + +inherit cmake rocm + +DESCRIPTION="Wrapper of rocPRIM or CUB for GPU parallel primitives" +HOMEPAGE="https://github.com/ROCm/rocm-libraries/tree/develop/projects/hipcub" +SRC_URI="https://github.com/ROCm/rocm-libraries/releases/download/rocm-${PV}/hipcub.tar.gz -> hipcub-${PV}.tar.gz" +S="${WORKDIR}/hipcub" + +LICENSE="BSD" +SLOT="0/$(ver_cut 1-2)" +KEYWORDS="~amd64" +IUSE="benchmark test" +REQUIRED_USE=" + benchmark? ( ${ROCM_REQUIRED_USE} ) + test? ( ${ROCM_REQUIRED_USE} ) +" +RESTRICT="!test? ( test )" + +RDEPEND=" + benchmark? ( + dev-util/hip:${SLOT} + dev-cpp/benchmark:= + ) +" +DEPEND=" + ${RDEPEND} + dev-util/hip:${SLOT} + sci-libs/rocPRIM:${SLOT} + test? ( dev-cpp/gtest ) +" + +PATCHES=( + "${FILESDIR}"/${PN}-7.2.0-no-tests-install.patch +) + +src_prepare() { + sed -e "s:set(ROCM_INSTALL_LIBDIR lib):set(ROCM_INSTALL_LIBDIR $(get_libdir)):" \ + -i cmake/ROCMExportTargetsHeaderOnly.cmake || die + + cmake_src_prepare +} + +src_configure() { + rocm_use_clang + + local mycmakeargs=( + -DGPU_TARGETS="$(get_amdgpu_flags)" + -DBUILD_TEST=$(usex test ON OFF) + -DBUILD_BENCHMARK=$(usex benchmark ON OFF) + ) + + cmake_src_configure +} + +src_test() { + check_amdgpu + # Expected time on gfx1100 (-j32) is 85s + # HipcubDeviceHistogramMultiEven/0.MultiEven in 6.4.1 has bad array access (probably fixed in the future release) + local CMAKE_SKIP_TESTS=(hipcub.DeviceHistogram) + cmake_src_test +}
