mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
sci-libs/hipBLAS: add 6.4.1
Signed-off-by: Sv. Lockal <lockalsash@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/42554 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
@@ -2,3 +2,4 @@ DIST hipBLAS-5.7.1.tar.gz 669163 BLAKE2B e065f77eba0bb99d347f71920e733d30b7693f9
|
||||
DIST hipBLAS-6.1.1.tar.gz 835570 BLAKE2B dc8a54f3b6c780f63e57f208d67b15e965d3a7c98e20766ef22ecfd41e8780a6b9464e31efad8003b52562222ec7ad06801d93a502ff99f8456f415db09e5ace SHA512 390b9a9bf0238a5c72d51d034c0053ec8c6b007547b1ec9561064828c24335e099ddb0402ad76e60018ec96742d5acfbb29b9d218a613e1c6d54e4b8b05ceca7
|
||||
DIST hipBLAS-6.3.2.tar.gz 993139 BLAKE2B a053f8b54318a169518f084e0bca3c9272cb51fab564c8d874b19483232cfeacb92707ad5224f4d0c3848b52d82973c36f0d4fdb429c9f5d995b3c56b1194075 SHA512 8581905a923484662471da786b795d7f960b45cc5eed991b101a88a4e3d4ea5217582c813192dde8eb35eafba9867c3ac448aeb4d7ef470e6da544f09397d902
|
||||
DIST hipBLAS-6.3.3.tar.gz 993121 BLAKE2B 7cfe71112a8083a0f5fd1f2629bde12a79b13f2d289dd82405978f7713fb30b132d002d01566b077650265e8ee6746b51e4e3defb92bd1416ec83ce7c490407c SHA512 a14ba19557236ef8affa557d5139c6c380120a68eac5d6b7172b279380a52be4d451a3c2a7ee2a7e4d169c16081ea4639dc058b5231d2a33429fb0f065db5b18
|
||||
DIST hipBLAS-6.4.1.tar.gz 993764 BLAKE2B 568872d3d7b4a38881a278966b320186d90065ffa657b54e1704c0ca7458f9b29e50412e45e5cefc1a209d3049aa1c809705e563e9ed5959c1fd066fb64a494f SHA512 192b24e53e4e0c3d4495e5444024022495bb35f3a60275d638541026deaa3ce37e4611c9355bd10cb1825354f5a411331475a34f8cc15a1fb10619591dee5e9c
|
||||
|
||||
46
sci-libs/hipBLAS/hipBLAS-6.4.1.ebuild
Normal file
46
sci-libs/hipBLAS/hipBLAS-6.4.1.ebuild
Normal file
@@ -0,0 +1,46 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
ROCM_VERSION=${PV}
|
||||
|
||||
inherit cmake rocm
|
||||
DESCRIPTION="ROCm BLAS marshalling library"
|
||||
HOMEPAGE="https://github.com/ROCm/hipBLAS"
|
||||
SRC_URI="https://github.com/ROCm/hipBLAS/archive/rocm-${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/hipBLAS-rocm-${PV}"
|
||||
|
||||
REQUIRED_USE="${ROCM_REQUIRED_USE}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0/$(ver_cut 1-2)"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
dev-util/hip:${SLOT}
|
||||
sci-libs/hipBLAS-common:${SLOT}
|
||||
sci-libs/rocBLAS:${SLOT}
|
||||
sci-libs/rocSOLVER:${SLOT}
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-6.3.0-no-git.patch
|
||||
)
|
||||
|
||||
src_configure() {
|
||||
# Note: hipcc is enforced; clang fails when libc++ is enabled
|
||||
# with an error similar to https://github.com/boostorg/config/issues/392
|
||||
rocm_use_hipcc
|
||||
|
||||
local mycmakeargs=(
|
||||
# currently hipBLAS is a wrapper of rocBLAS which has tests, so no need to perform test here
|
||||
-DBUILD_CLIENTS_TESTS=OFF
|
||||
-DBUILD_CLIENTS_BENCHMARKS=OFF
|
||||
-DBUILD_FILE_REORG_BACKWARD_COMPATIBILITY=OFF
|
||||
-DROCM_SYMLINK_LIBS=OFF
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
Reference in New Issue
Block a user