mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 06:35:19 +02:00
In accordance with GLEP 31, the DESCRIPTION field of ebuilds should only contain ASCII characters. This commit converts the DESCRIPTION field of all affected ebuilds to ASCII only. Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
125 lines
3.1 KiB
Bash
125 lines
3.1 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{11..13} )
|
|
ROCM_VERSION=6.3
|
|
|
|
inherit cmake cuda python-any-r1 rocm
|
|
|
|
DESCRIPTION="Intel Open Image Denoise library"
|
|
HOMEPAGE="https://www.openimagedenoise.org https://github.com/RenderKit/oidn"
|
|
|
|
if [[ ${PV} = *9999* ]]; then
|
|
EGIT_REPO_URI="https://github.com/RenderKit/oidn.git"
|
|
EGIT_BRANCH="master"
|
|
EGIT_LFS="1"
|
|
inherit git-r3
|
|
else
|
|
SRC_URI="https://github.com/RenderKit/${PN}/releases/download/v${PV}/${P}.src.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="amd64 -arm ~arm64 -ppc ~ppc64 -x86" # 64-bit-only
|
|
fi
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0/${PV}"
|
|
IUSE="apps cuda hip openimageio test"
|
|
REQUIRED_USE="
|
|
test? ( apps )
|
|
"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="
|
|
dev-cpp/tbb:=
|
|
dev-lang/ispc
|
|
cuda? ( dev-util/nvidia-cuda-toolkit:= )
|
|
hip? (
|
|
dev-util/hip:=
|
|
sci-libs/composable-kernel
|
|
)
|
|
openimageio? ( media-libs/openimageio:= )
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="${PYTHON_DEPS}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-2.2.2-amdgpu-targets.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
if use cuda; then
|
|
cuda_src_prepare
|
|
fi
|
|
|
|
if use hip; then
|
|
if has_version ">=dev-util/hip-6.2"; then
|
|
eapply "${FILESDIR}/${PN}-2.3.1-hip-clang-19.patch"
|
|
eapply "${FILESDIR}/${PN}-2.3.1-system-composable-kernel.patch"
|
|
eapply "${FILESDIR}/${PN}-2.3.1-composable-kernel-api.patch"
|
|
fi
|
|
|
|
if has_version "dev-util/hip[llvm_slot_19]"; then
|
|
# Fix Clang 19 error
|
|
# Bug: https://github.com/RenderKit/oidn/issues/250
|
|
sed -i "s/.template Run(/.template Run<>(/g" \
|
|
external/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_wmma.hpp \
|
|
external/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_xdlops_skip_b_lds.hpp \
|
|
external/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_xdlops.hpp || die
|
|
fi
|
|
|
|
# https://bugs.gentoo.org/930391
|
|
sed "/-Wno-unused-result/s:): --rocm-path=${EPREFIX}/usr):" \
|
|
-i devices/hip/CMakeLists.txt || die
|
|
fi
|
|
|
|
sed -e "/^install.*llvm_macros.cmake.*cmake/d" -i CMakeLists.txt || die
|
|
# do not fortify source -- bug 895018
|
|
sed -e "s/-D_FORTIFY_SOURCE=2//g" -i {cmake/oidn_platform,external/mkl-dnn/cmake/SDL}.cmake || die
|
|
|
|
# 950261
|
|
sed -e "/set(CMAKE_CXX_STANDARD /s/^/# /" -i cmake/oidn_platform.cmake || die
|
|
|
|
cmake_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DOIDN_APPS="$(usex apps)"
|
|
|
|
-DOIDN_DEVICE_CPU="yes"
|
|
-DOIDN_DEVICE_CUDA="$(usex cuda)"
|
|
-DOIDN_DEVICE_HIP="$(usex hip)"
|
|
# -DOIDN_DEVICE_SYCL="$(usex sycl)"
|
|
)
|
|
|
|
if use apps; then
|
|
mycmakeargs+=( -DOIDN_APPS_OPENIMAGEIO="$(usex openimageio)" )
|
|
fi
|
|
|
|
if use cuda; then
|
|
export CUDAHOSTCXX="$(cuda_gccdir)"
|
|
fi
|
|
|
|
if use hip; then
|
|
mycmakeargs+=(
|
|
-DROCM_PATH="${EPREFIX}/usr"
|
|
-DOIDN_DEVICE_HIP_COMPILER="${ESYSROOT}/usr/bin/hipcc" # use HIPHOSTCOMPILER
|
|
-DAMDGPU_TARGETS="$(get_amdgpu_flags)"
|
|
)
|
|
fi
|
|
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_test() {
|
|
"${BUILD_DIR}"/oidnTest || die "There were test failures!"
|
|
}
|
|
|
|
src_install() {
|
|
cmake_src_install
|
|
|
|
if use hip || use cuda ; then
|
|
# remove garbage in /var/tmp left by subprojects
|
|
rm -r "${ED}"/var || die
|
|
fi
|
|
}
|