mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
sci-libs/rocWMMA: add 6.3.2
Signed-off-by: Patrick Lauer <patrick@gentoo.org>
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
DIST rocWMMA-5.7.1.tar.gz 3163060 BLAKE2B 47ca55c0cd388ca51ad3843e656a31ce04d9e07988c26bfb69a7c61bfe497609408cfd20dcbe9c6698bd79b800a114ab67d582ced43dc6f1c4db4072e2901d99 SHA512 92c9c634fdf1f5319d34fabbf691df45600abdc5285a76b40255e7d6d260553076f65baa1eda566a163725e2a0cec0a85372eb07add39c65368e84505c176f50
|
||||
DIST rocWMMA-6.1.1.tar.gz 3189782 BLAKE2B fd96d8f3ba8f21ee3544d532a59ffdefa1aefc94d73401f48d470f7f699e28771d5495e98c1ee316d8379167b70b945220be6670dee2757a62af162276a2fb0f SHA512 db2bfe805a4f33c48ee98c821efe0b261eca474af9e954843c83faa3335459bfe635326ba2cfc7b8b8ece2cf0f2c418f49ff6aa81537f8d3747cc729738a6b18
|
||||
DIST rocWMMA-6.3.0.tar.gz 3225622 BLAKE2B bfcb872393a11c809d1f7d09aeca554c24669650f4e61d5846104d0559b50a584081260ad566b1d79a2d107cc1f2bf9ea26751e0611cba9108a455a2ba48a3cb SHA512 5c72df14eabd0e766ffc03e41cd2e5a07ffb4ab518f7e6c2b1f23517c20a1c076d08a45f9940e499ede02c0d2c77f3f76f65f4748c7c8dfa2e747a406acf0aa1
|
||||
DIST rocWMMA-6.3.2.tar.gz 3225614 BLAKE2B ee4c8ba96d5603c1eb029b473a8ab7c80bad0917be58d2a0d3673d84a2ccd743e3f9ee1487c49a866c685426cb1486601de0d94470f0d2de09fcde47bb063353 SHA512 01a3db5234d747273eb925db3c803651bf475d3685f7e0488be880bddceaa008f1988e476d465aba9564e95d5d5c370320d0465605e02ff88e9e7bd67d68e27d
|
||||
|
||||
74
sci-libs/rocWMMA/rocWMMA-6.3.2.ebuild
Normal file
74
sci-libs/rocWMMA/rocWMMA-6.3.2.ebuild
Normal file
@@ -0,0 +1,74 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
ROCM_SKIP_GLOBALS=1
|
||||
|
||||
inherit cmake rocm
|
||||
|
||||
DESCRIPTION="library for accelerating mixed precision matrix multiply-accumulate operations"
|
||||
HOMEPAGE="https://github.com/ROCm/rocWMMA"
|
||||
SRC_URI="https://github.com/ROCm/rocWMMA/archive/rocm-${PV}.tar.gz -> rocWMMA-${PV}.tar.gz"
|
||||
S="${WORKDIR}/rocWMMA-rocm-${PV}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0/$(ver_cut 1-2)"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
DEPEND="dev-util/hip:${SLOT}"
|
||||
|
||||
IUSE_TARGETS=( gfx908 gfx90a gfx940 gfx941 gfx942 gfx1100 gfx1101 gfx1102 )
|
||||
IUSE_TARGETS=( "${IUSE_TARGETS[@]/#/amdgpu_targets_}" )
|
||||
ROCM_USEDEP_OPTFLAGS=${IUSE_TARGETS[*]/%/(-)?}
|
||||
ROCM_USEDEP=${ROCM_USEDEP_OPTFLAGS// /,}
|
||||
ROCM_REQUIRED_USE=" || ( ${IUSE_TARGETS[*]} )"
|
||||
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-cpp/gtest
|
||||
sci-libs/rocBLAS:${SLOT}[${ROCM_USEDEP}]
|
||||
)
|
||||
dev-build/rocm-cmake
|
||||
"
|
||||
|
||||
IUSE="${IUSE_TARGETS[*]/#/+} test"
|
||||
|
||||
REQUIRED_USE="${ROCM_REQUIRED_USE}"
|
||||
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-6.1.1-no-test-install.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
# unknown arguments for hipcc
|
||||
sed -e "s/ -parallel-jobs=4//" \
|
||||
-e "s/ -Xclang -fallow-half-arguments-and-returns//" \
|
||||
-i CMakeLists.txt || die
|
||||
|
||||
cmake_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
rocm_use_hipcc
|
||||
|
||||
local mycmakeargs=(
|
||||
-DCMAKE_SKIP_RPATH=ON
|
||||
-DAMDGPU_TARGETS="$(get_amdgpu_flags)"
|
||||
-DROCM_SYMLINK_LIBS=OFF
|
||||
-DROCWMMA_BUILD_SAMPLES=OFF
|
||||
-DROCWMMA_BUILD_TESTS="$(usex test)"
|
||||
)
|
||||
use test && mycmakeargs+=(-DROCWMMA_USE_SYSTEM_GOOGLETEST=ON)
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_test() {
|
||||
check_amdgpu
|
||||
|
||||
# Expected time on gfx1100 is 1260s (-j1) or 936s (-j32)
|
||||
# Visible devices are limited to the first one to exclude APU (if not disabled in the BIOS)
|
||||
HIP_VISIBLE_DEVICES=0 cmake_src_test
|
||||
}
|
||||
Reference in New Issue
Block a user