From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/rocBLAS/
Date: Sat, 11 Oct 2025 18:14:33 +0000 (UTC) [thread overview]
Message-ID: <1760206122.d39bce29f5bfcc2d27c6c247218aeba4e251e562.asturm@gentoo> (raw)
commit: d39bce29f5bfcc2d27c6c247218aeba4e251e562
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 11 07:52:51 2025 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Oct 11 18:08:42 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d39bce29
sci-libs/rocBLAS: drop 5.7.1-r2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-libs/rocBLAS/Manifest | 1 -
sci-libs/rocBLAS/rocBLAS-5.7.1-r2.ebuild | 111 -------------------------------
2 files changed, 112 deletions(-)
diff --git a/sci-libs/rocBLAS/Manifest b/sci-libs/rocBLAS/Manifest
index ab12141bf74d..90ddb03ce91b 100644
--- a/sci-libs/rocBLAS/Manifest
+++ b/sci-libs/rocBLAS/Manifest
@@ -1,3 +1,2 @@
-DIST rocm-rocBLAS-5.7.1.tar.gz 55389700 BLAKE2B 9e58b1d29c8a04aa58ce17fdd9b0c2504934261851619dc5b696a04e8c6a79e7c44d86a6db7a9c76a434d76593de8c191cba6f163cf398d01cfc001e5fa32b5a SHA512 cfc73f6c490595a3c153c2ac2a3cb5926c48c2c19baa07ff3dcdf3a7ccaed82cfdff64ed5a3be64c349cb43d654d4b104d9090e2ec9f2061049d6a4921c07722
DIST rocm-rocBLAS-6.3.3.tar.gz 57909385 BLAKE2B a51274e2895419cc517ac24a0235c90f3b2551945b6936789abc78a08c8dde151de6d853d6378a702138227604af4cc185bde3acb5bf8999e09699d293bb2b85 SHA512 fcc8718e0c3dde8715f758e83f3a1ca45dde88ac56680e7723e2041dd3c1d7b9f575b1686552d04e7ef12b57188164c8abb5a6e4c568ade03d534edc30846c9e
DIST rocm-rocBLAS-6.4.3.tar.gz 57989956 BLAKE2B 36ed966b9ebeabae20510a20ed5e0503254cddbac25535297baaca6ac52decac2598bcb85c73a720737dd959fc64c2ee542b3b8ed59ae85980aeaf6dbc093681 SHA512 6273122eca037c22e44d56a3c09e04383c2f59d64342b36ac65430ad9f9a963c70b4c5477eb615a31daaf0deea1aedd11b88f2d66bcbada89504cb48cf2c264f
diff --git a/sci-libs/rocBLAS/rocBLAS-5.7.1-r2.ebuild b/sci-libs/rocBLAS/rocBLAS-5.7.1-r2.ebuild
deleted file mode 100644
index 80644ab20db8..000000000000
--- a/sci-libs/rocBLAS/rocBLAS-5.7.1-r2.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DOCS_BUILDER="doxygen"
-DOCS_DIR="docs/.doxygen"
-DOCS_DEPEND="media-gfx/graphviz"
-ROCM_VERSION=${PV}
-inherit cmake docs edo multiprocessing rocm
-
-DESCRIPTION="AMD's library for BLAS on ROCm"
-HOMEPAGE="https://github.com/ROCmSoftwarePlatform/rocBLAS"
-SRC_URI="https://github.com/ROCmSoftwarePlatform/rocBLAS/archive/rocm-${PV}.tar.gz -> rocm-${P}.tar.gz"
-S="${WORKDIR}/${PN}-rocm-${PV}"
-
-LICENSE="BSD"
-KEYWORDS="~amd64"
-SLOT="0/$(ver_cut 1-2)"
-RESTRICT="!test? ( test )"
-IUSE="benchmark test"
-REQUIRED_USE="${ROCM_REQUIRED_USE}"
-
-BDEPEND="
- >=dev-build/rocm-cmake-5.3
- dev-util/Tensile:${SLOT}
- dev-python/joblib
- test? ( dev-cpp/gtest )
-"
-
-DEPEND="
- >=dev-cpp/msgpack-cxx-6.0.0
- =dev-util/hip-5*
- test? (
- virtual/blas
- dev-cpp/gtest
- llvm-runtimes/openmp
- )
- benchmark? (
- virtual/blas
- llvm-runtimes/openmp
- )
-"
-
-QA_FLAGS_IGNORED="/usr/lib64/rocblas/library/.*"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-5.4.2-cpp_lib_filesystem.patch
- "${FILESDIR}"/${PN}-5.4.2-add-missing-header.patch
- "${FILESDIR}"/${PN}-5.4.2-link-cblas.patch
- "${FILESDIR}"/${PN}-5.7.1-expand-isa-compatibility.patch
- )
-
-src_prepare() {
- cmake_src_prepare
- sed -e "s:,-rpath=.*\":\":" -i clients/CMakeLists.txt || die
-}
-
-src_configure() {
- addpredict /dev/random
- addpredict /dev/kfd
- addpredict /dev/dri/
-
- local mycmakeargs=(
- -DCMAKE_SKIP_RPATH=On
- -DBUILD_FILE_REORG_BACKWARD_COMPATIBILITY=OFF
- -DROCM_SYMLINK_LIBS=OFF
- -DAMDGPU_TARGETS="$(get_amdgpu_flags)"
- -DTensile_LOGIC="asm_full"
- -DTensile_COMPILER="hipcc"
- -DTensile_LIBRARY_FORMAT="msgpack"
- -DTensile_CODE_OBJECT_VERSION="default"
- -DTensile_ROOT="${EPREFIX}/usr/share/Tensile"
- -DBUILD_WITH_TENSILE=ON
- -DCMAKE_INSTALL_INCLUDEDIR="include/rocblas"
- -DBUILD_CLIENTS_SAMPLES=OFF
- -DBUILD_CLIENTS_TESTS=$(usex test ON OFF)
- -DBUILD_CLIENTS_BENCHMARKS=$(usex benchmark ON OFF)
- -DTensile_CPU_THREADS=$(makeopts_jobs)
- -DBUILD_WITH_PIP=OFF
- )
-
- CXX=hipcc cmake_src_configure
-}
-
-src_compile() {
- docs_compile
- cmake_src_compile
-}
-
-src_test() {
- check_amdgpu
- cd "${BUILD_DIR}"/clients/staging || die
- export ROCBLAS_TEST_TIMEOUT=3600 ROCBLAS_TENSILE_LIBPATH="${BUILD_DIR}/Tensile/library"
- export LD_LIBRARY_PATH="${BUILD_DIR}/clients:${BUILD_DIR}/library/src"
- edob ./${PN,,}-test
-}
-
-src_install() {
- cmake_src_install
-
- if use benchmark; then
- cd "${BUILD_DIR}" || die
- dolib.a clients/librocblas_fortran_client.a
- dobin clients/staging/rocblas-bench
- fi
-
- # Stop llvm-strip from removing .strtab section from *.hsaco files,
- # otherwise rocclr/elf/elf.cpp complains with "failed: null sections(STRTAB)" and crashes
- dostrip -x /usr/$(get_libdir)/rocblas/library/
-}
next reply other threads:[~2025-10-11 18:14 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-11 18:14 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-10-21 20:34 [gentoo-commits] repo/gentoo:master commit in: sci-libs/rocBLAS/ Sam James
2025-10-12 13:08 Andreas Sturmlechner
2025-09-06 15:13 Sam James
2025-08-10 6:07 Patrick Lauer
2025-07-05 7:16 Sam James
2025-06-15 5:27 Patrick Lauer
2025-04-12 20:18 Sam James
2025-04-06 2:27 Benda XU
2025-03-04 10:55 Patrick Lauer
2025-02-08 10:07 Patrick Lauer
2025-01-06 10:51 Sam James
2024-11-09 21:08 Patrick Lauer
2024-09-09 18:20 Sam James
2024-03-08 19:22 Sam James
2024-03-08 19:22 Sam James
2024-03-08 19:22 Sam James
2023-11-27 14:35 Benda XU
2023-07-30 7:49 Benda XU
2023-03-30 22:41 Marek Szuba
2023-02-24 16:50 Marek Szuba
2023-02-07 20:13 Marek Szuba
2023-01-31 14:30 Benda XU
2022-10-15 15:01 Sam James
2022-09-22 1:08 Benda XU
2022-08-06 14:23 Benda XU
2022-03-05 20:51 Andrew Ammerlaan
2022-03-05 20:51 Andrew Ammerlaan
2022-03-05 20:51 Andrew Ammerlaan
2021-12-26 0:20 Sam James
2021-09-11 13:34 Ulrich Müller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1760206122.d39bce29f5bfcc2d27c6c247218aeba4e251e562.asturm@gentoo \
--to=asturm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox