# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{12..13} ) DISTUTILS_SINGLE_IMPL=1 inherit distutils-r1 cuda DESCRIPTION="Differentiable octree-based radiance-field / voxel rasterization for TRELLIS" HOMEPAGE="https://github.com/JeffreyXiang/diffoctreerast" # TRELLIS pins commit b09c20b and its GLM submodule; use the self-contained # extra-stuff snapshot because upstream has no release tag. SRC_URI="https://raw.githubusercontent.com/istitov/extra-stuff/${P}-r0-0/dev-python/${PN}/${P}.tar.xz -> ${P}-r0-0.tar.xz" S="${WORKDIR}/${P}" # Includes non-commercial Gaussian-Splatting code and MIT-licensed GLM. LICENSE="Gaussian-Splatting MIT" SLOT="0" KEYWORDS="~amd64" RESTRICT="bindist mirror" RDEPEND="sci-ml/caffe2[${PYTHON_SINGLE_USEDEP}]" DEPEND="${RDEPEND}" BDEPEND=" $(python_gen_cond_dep ' dev-python/setuptools[${PYTHON_USEDEP}] dev-python/wheel[${PYTHON_USEDEP}] ') " PATCHES=( "${FILESDIR}/${P}-settings.patch" ) src_prepare() { distutils-r1_src_prepare } src_compile() { local gccdir gccdir=$(cuda_gccdir) || die export CC="${gccdir}/gcc" CXX="${gccdir}/g++" # Respect TORCH_CUDA_ARCH_LIST; otherwise target the visible GPU. With no # GPU, let cpp_extension choose its fallback architecture list. if [[ -z ${TORCH_CUDA_ARCH_LIST} ]]; then cuda_add_sandbox -w local native_cc native_cc=$(__nvcc_device_query 2>/dev/null) [[ ${native_cc} =~ ^[0-9]{2,}$ ]] && export TORCH_CUDA_ARCH_LIST="${native_cc%?}.${native_cc: -1}" fi export FORCE_CUDA=1 MAX_JOBS="${MAX_JOBS:-4}" distutils-r1_src_compile }