Install this version:
emerge -a =sci-libs/aotriton-bin-0.13b
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sci-libs/aotriton-bin-0.13b
Or alternatively:
emerge --autounmask-write -a =sci-libs/aotriton-bin-0.13b
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 0.13b | 8 | -* ~amd64 | 0/0.13 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN=${PN%*-bin}
MY_P=${MY_PN}-${PV}
DESCRIPTION="Ahead of Time (AOT) Triton Math Library (binary package)"
HOMEPAGE="https://github.com/ROCm/aotriton"
URI_PREFIX="https://github.com/ROCm/${MY_PN}/releases/download/${PV}"
SHIM_URI_PREFIX="${URI_PREFIX}/${MY_P}-manylinux_2_28_x86_64"
IMAGES_URI_PREFIX="${URI_PREFIX}/${MY_P}-images-amd"
# Download libs for all rocm releases (4mb each), but unpack only one.
# 0.13b adds a standalone gfx1250 image (gfx12xx now split gfx120x + gfx1250).
# Upstream also ships rocm7.14/7.15 shims for newer HIP, deliberately not wired
# here: the shim set has a gap (6.4/7.0/7.1/7.2 then 7.14/7.15), so the <7.3 HIP
# cap below is kept until those HIP versions are confirmed to exist.
SRC_URI="
${SHIM_URI_PREFIX}-rocm6.4-shared.tar.gz
${SHIM_URI_PREFIX}-rocm7.0-shared.tar.gz
${SHIM_URI_PREFIX}-rocm7.1-shared.tar.gz
${SHIM_URI_PREFIX}-rocm7.2-shared.tar.gz
amdgpu_targets_gfx90a? ( ${IMAGES_URI_PREFIX}-gfx90a.tar.gz )
amdgpu_targets_gfx942? ( ${IMAGES_URI_PREFIX}-gfx942.tar.gz )
amdgpu_targets_gfx950? ( ${IMAGES_URI_PREFIX}-gfx950.tar.gz )
amdgpu_targets_gfx1100? ( ${IMAGES_URI_PREFIX}-gfx110x.tar.gz )
amdgpu_targets_gfx1101? ( ${IMAGES_URI_PREFIX}-gfx110x.tar.gz )
amdgpu_targets_gfx1102? ( ${IMAGES_URI_PREFIX}-gfx110x.tar.gz )
amdgpu_targets_gfx1103? ( ${IMAGES_URI_PREFIX}-gfx110x.tar.gz )
amdgpu_targets_gfx1150? ( ${IMAGES_URI_PREFIX}-gfx115x.tar.gz )
amdgpu_targets_gfx1151? ( ${IMAGES_URI_PREFIX}-gfx115x.tar.gz )
amdgpu_targets_gfx1200? ( ${IMAGES_URI_PREFIX}-gfx120x.tar.gz )
amdgpu_targets_gfx1201? ( ${IMAGES_URI_PREFIX}-gfx120x.tar.gz )
amdgpu_targets_gfx1250? ( ${IMAGES_URI_PREFIX}-gfx1250.tar.gz )
"
S="${WORKDIR}/${MY_PN}"
LICENSE="MIT"
SLOT="0/${PV%b}"
KEYWORDS="-* ~amd64"
IUSE_TARGETS=(
gfx90a
gfx942
gfx950
gfx1100
gfx1101
gfx1102
gfx1103
gfx1150
gfx1151
gfx1200
gfx1201
gfx1250
)
IUSE_TARGETS=( "${IUSE_TARGETS[@]/#/amdgpu_targets_}" )
IUSE="${IUSE_TARGETS[*]/#/+}"
RESTRICT="strip"
QA_PREBUILT="usr/lib*/libaotriton_v2.so.*"
# glibc & gcc: linked with manylinux version, no rebuild required
# xz-utils: used to decompress lzma blobs with kernels in runtime
# dev-util/hip: must be in sync with SRC_URI
# and trigger reinstall on sub-slot change.
# Shims wired here span rocm6.4..7.2, so floor hip at 6.4 and
# cap below 7.3 (matching 0.12b's proven range).
RDEPEND="
sys-libs/glibc
sys-devel/gcc
app-arch/xz-utils
>=dev-util/hip-6.4:=
<dev-util/hip-7.3:=
"
src_unpack() {
# *-rocmX.X-shared.tar.gz archives with host code have the same structure,
# so decompression of all of them would overwrite files of each other.
# Instead we decompress only one version for current dev-util/hip.
local hippkg=$(best_version dev-util/hip)
local rocmver="$(ver_cut 1-2 "${hippkg#*hip-}")"
local file
for file in ${A}; do
[[ $file == *-rocm${rocmver}-*.tar.gz || $file == *-gfx*.tar.gz ]] &&
unpack "${file}"
done
}
src_install() {
doheader -r include/*
insinto /usr/$(get_libdir)
doins -r lib/*
}
Manage flags for this package:
euse -i <flag> -p sci-libs/aotriton-bin |
euse -E <flag> -p sci-libs/aotriton-bin |
euse -D <flag> -p sci-libs/aotriton-bin
sys-libs/glibc sys-devel/gcc app-arch/xz-utils >=dev-util/hip-6.4:= <dev-util/hip-7.3:=