mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
media-libs/osl: add 1.14.5.1
Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/41967 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
@@ -108,7 +108,7 @@ RDEPEND="${PYTHON_DEPS}
|
||||
)
|
||||
optix? ( <dev-libs/optix-9:= )
|
||||
osl? (
|
||||
>=media-libs/osl-1.13:=[${LLVM_USEDEP}]
|
||||
<media-libs/osl-1.14:=[${LLVM_USEDEP}]
|
||||
media-libs/mesa[${LLVM_USEDEP}]
|
||||
)
|
||||
pdf? ( media-libs/libharu )
|
||||
|
||||
@@ -159,7 +159,7 @@ RDEPEND="${PYTHON_DEPS}
|
||||
)
|
||||
optix? ( <dev-libs/optix-9:= )
|
||||
osl? (
|
||||
>=media-libs/osl-1.13:=[${LLVM_USEDEP}]
|
||||
<media-libs/osl-1.14:=[${LLVM_USEDEP}]
|
||||
media-libs/mesa[${LLVM_USEDEP}]
|
||||
)
|
||||
pdf? ( media-libs/libharu )
|
||||
|
||||
@@ -1 +1,2 @@
|
||||
DIST osl-1.13.12.0.tar.gz 21824352 BLAKE2B 0d5c1d166afc347a515187c34d60c0a2be99e8a1b7078a388190f2232ee545654e3c1fea829dfabb7b0a105d69d3d98cc5dae4fa8f4db1a2228f9f258b34e76b SHA512 152a1b085c4ea88c86bc0ccbd694b848b9f50bd91f1a165899c2c3999042e413e54cdfb83dd90ea23daeeb2a3b65f794b8b2c19e9629bbda266971dcd6e3b5e7
|
||||
DIST osl-1.14.5.1.tar.gz 43346319 BLAKE2B e2ae4448ecd7c144113012873c85e512edc4dd78bbd64438f194a680554181a98e6c6b871e17229ba5d252db3a5f51f8af2807016682ed4cd60f83d5d734d821 SHA512 4dfa3659dacc78dc82b943f0d16685e9353924fab40127c69cb2fbdf6d0794970bf283f8711119c31369b9fe507c45e12137d2121f217678da9be86b44b4e2dc
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
lights, displacement, and pattern generation.
|
||||
</longdescription>
|
||||
<use>
|
||||
<flag name="clang-cuda">Use clang for cuda units compilation</flag>
|
||||
<flag name="gui">Build the osltoy binary</flag>
|
||||
<flag name="libcxx">Build against <pkg>llvm-runtimes/libcxx</pkg> when using clang</flag>
|
||||
<flag name="nofma">Do not use Fuse-Multiply-Add operations</flag>
|
||||
|
||||
430
media-libs/osl/osl-1.14.5.1.ebuild
Normal file
430
media-libs/osl/osl-1.14.5.1.ebuild
Normal file
@@ -0,0 +1,430 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
# keep in sync with blender
|
||||
PYTHON_COMPAT=( python3_{11..13} )
|
||||
|
||||
# Check this on updates
|
||||
LLVM_COMPAT=( {18..19} )
|
||||
|
||||
inherit cmake cuda flag-o-matic llvm-r1 toolchain-funcs python-single-r1
|
||||
|
||||
DESCRIPTION="Advanced shading language for production GI renderers"
|
||||
HOMEPAGE="https://www.imageworks.com/technology/opensource https://github.com/AcademySoftwareFoundation/OpenShadingLanguage"
|
||||
|
||||
if [[ ${PV} = *9999* ]] ; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/AcademySoftwareFoundation/OpenShadingLanguage.git"
|
||||
else
|
||||
# If a development release, please don't keyword!
|
||||
SRC_URI="https://github.com/AcademySoftwareFoundation/OpenShadingLanguage/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
|
||||
S="${WORKDIR}/OpenShadingLanguage-${PV}"
|
||||
fi
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0/$(ver_cut 1-2)" # based on SONAME
|
||||
|
||||
X86_CPU_FEATURES=(
|
||||
sse2:sse2
|
||||
sse3:sse3
|
||||
ssse3:ssse3
|
||||
sse4_1:sse4.1
|
||||
sse4_2:sse4.2
|
||||
avx:avx
|
||||
avx2:avx2
|
||||
avx512f:avx512f
|
||||
f16c:f16c
|
||||
)
|
||||
CPU_FEATURES=( "${X86_CPU_FEATURES[@]/#/cpu_flags_x86_}" )
|
||||
|
||||
IUSE="+clang-cuda debug doc gui libcxx nofma optix partio test ${CPU_FEATURES[*]%:*} python"
|
||||
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}
|
||||
test? ( optix? ( clang-cuda ) )
|
||||
"
|
||||
|
||||
RDEPEND="
|
||||
dev-libs/pugixml
|
||||
>=media-libs/openimageio-2.4:=
|
||||
$(llvm_gen_dep '
|
||||
llvm-core/clang:${LLVM_SLOT}=
|
||||
llvm-core/llvm:${LLVM_SLOT}=
|
||||
')
|
||||
python? (
|
||||
${PYTHON_DEPS}
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/pybind11[${PYTHON_USEDEP}]
|
||||
media-libs/openimageio[python,${PYTHON_SINGLE_USEDEP}]
|
||||
')
|
||||
)
|
||||
partio? ( media-libs/partio )
|
||||
gui? (
|
||||
dev-qt/qtbase:6[gui,widgets,opengl]
|
||||
)
|
||||
"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/patchelf
|
||||
>=media-libs/openexr-3
|
||||
sys-libs/zlib
|
||||
test? (
|
||||
media-fonts/droid
|
||||
optix? (
|
||||
clang-cuda? (
|
||||
dev-util/nvidia-cuda-toolkit
|
||||
)
|
||||
dev-libs/optix
|
||||
)
|
||||
)
|
||||
"
|
||||
BDEPEND="
|
||||
sys-devel/bison
|
||||
sys-devel/flex
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${PN}-include-cstdint.patch"
|
||||
)
|
||||
|
||||
cuda_get_host_compiler() {
|
||||
if [[ -n "${NVCC_CCBIN}" ]]; then
|
||||
echo "${NVCC_CCBIN}"
|
||||
return
|
||||
fi
|
||||
|
||||
if [[ -n "${CUDAHOSTCXX}" ]]; then
|
||||
echo "${CUDAHOSTCXX}"
|
||||
return
|
||||
fi
|
||||
|
||||
einfo "Trying to find working CUDA host compiler"
|
||||
|
||||
if ! tc-is-gcc && ! tc-is-clang; then
|
||||
die "$(tc-get-compiler-type) compiler is not supported"
|
||||
fi
|
||||
|
||||
local compiler compiler_type compiler_version
|
||||
local package package_version
|
||||
# local -x NVCC_CCBIN
|
||||
local NVCC_CCBIN_default
|
||||
|
||||
compiler_type="$(tc-get-compiler-type)"
|
||||
compiler_version="$("${compiler_type}-major-version")"
|
||||
|
||||
# try the default compiler first
|
||||
NVCC_CCBIN="$(tc-getCXX)"
|
||||
NVCC_CCBIN_default="${NVCC_CCBIN}-${compiler_version}"
|
||||
|
||||
compiler="${NVCC_CCBIN/%-${compiler_version}}"
|
||||
|
||||
# store the package so we can re-use it later
|
||||
if tc-is-gcc; then
|
||||
package="sys-devel/${compiler_type}"
|
||||
elif tc-is-clang; then
|
||||
package="llvm-core/${compiler_type}"
|
||||
else
|
||||
die "$(tc-get-compiler-type) compiler is not supported"
|
||||
fi
|
||||
|
||||
package_version="${package}"
|
||||
|
||||
ebegin "testing ${NVCC_CCBIN_default} (default)"
|
||||
|
||||
while ! nvcc -v -ccbin "${NVCC_CCBIN}" - -x cu <<<"int main(){}" &>> "${T}/cuda_get_host_compiler.log" ; do
|
||||
eend 1
|
||||
|
||||
while true; do
|
||||
# prepare next version
|
||||
if ! package_version="<$(best_version "${package_version}")"; then
|
||||
die "could not find a supported version of ${compiler}"
|
||||
fi
|
||||
|
||||
NVCC_CCBIN="${compiler}-$(ver_cut 1 "${package_version/#<${package}-/}")"
|
||||
|
||||
[[ "${NVCC_CCBIN}" != "${NVCC_CCBIN_default}" ]] && break
|
||||
done
|
||||
ebegin "testing ${NVCC_CCBIN}"
|
||||
done
|
||||
eend $?
|
||||
|
||||
echo "${NVCC_CCBIN}"
|
||||
export NVCC_CCBIN
|
||||
}
|
||||
|
||||
cuda_get_host_native_arch() {
|
||||
[[ -n ${CUDAARCHS} ]] && echo "${CUDAARCHS}"
|
||||
|
||||
__nvcc_device_query || die "failed to query the native device"
|
||||
}
|
||||
|
||||
pkg_setup() {
|
||||
llvm-r1_pkg_setup
|
||||
|
||||
use python && python-single-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
sed -e "/^install.*llvm_macros.cmake.*cmake/d" -i CMakeLists.txt || die
|
||||
sed -e "/install_targets ( libtestshade )/d" -i src/testshade/CMakeLists.txt || die
|
||||
|
||||
cmake_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# -Werror=lto-type-mismatch
|
||||
# https://bugs.gentoo.org/875836
|
||||
# https://github.com/AcademySoftwareFoundation/OpenShadingLanguage/issues/1810
|
||||
filter-lto
|
||||
|
||||
# pick the highest we support
|
||||
local mysimd=()
|
||||
if use cpu_flags_x86_avx512f; then
|
||||
mysimd+=( avx512f )
|
||||
elif use cpu_flags_x86_avx2 ; then
|
||||
mysimd+=( avx2 )
|
||||
if use cpu_flags_x86_f16c ; then
|
||||
mysimd+=( f16c )
|
||||
fi
|
||||
elif use cpu_flags_x86_avx ; then
|
||||
mysimd+=( avx )
|
||||
elif use cpu_flags_x86_sse4_2 ; then
|
||||
mysimd+=( sse4.2 )
|
||||
elif use cpu_flags_x86_sse4_1 ; then
|
||||
mysimd+=( sse4.1 )
|
||||
elif use cpu_flags_x86_ssse3 ; then
|
||||
mysimd+=( ssse3 )
|
||||
elif use cpu_flags_x86_sse3 ; then
|
||||
mysimd+=( sse3 )
|
||||
elif use cpu_flags_x86_sse2 ; then
|
||||
mysimd+=( sse2 )
|
||||
fi
|
||||
|
||||
local mybatched=()
|
||||
if use cpu_flags_x86_avx512f || use cpu_flags_x86_avx2 ; then
|
||||
if use cpu_flags_x86_avx512f ; then
|
||||
if use nofma; then
|
||||
mybatched+=(
|
||||
"b8_AVX512_noFMA"
|
||||
"b16_AVX512_noFMA"
|
||||
)
|
||||
fi
|
||||
mybatched+=(
|
||||
"b8_AVX512"
|
||||
"b16_AVX512"
|
||||
)
|
||||
fi
|
||||
if use cpu_flags_x86_avx2 ; then
|
||||
if use nofma; then
|
||||
mybatched+=(
|
||||
"b8_AVX2_noFMA"
|
||||
)
|
||||
fi
|
||||
mybatched+=(
|
||||
"b8_AVX2"
|
||||
)
|
||||
fi
|
||||
fi
|
||||
if use cpu_flags_x86_avx ; then
|
||||
mybatched+=(
|
||||
"b8_AVX"
|
||||
)
|
||||
fi
|
||||
|
||||
# If no CPU SIMDs were used, completely disable them
|
||||
[[ -z "${mysimd[*]}" ]] && mysimd=("0")
|
||||
[[ -z "${mybatched[*]}" ]] && mybatched=("0")
|
||||
|
||||
# This is currently needed on arm64 to get the NEON SIMD wrapper to compile the code successfully
|
||||
# Even if there are no SIMD features selected, it seems like the code will turn on NEON support if it is available.
|
||||
use arm64 && append-flags -flax-vector-conversions
|
||||
|
||||
local mycmakeargs=(
|
||||
-DVERBOSE="no"
|
||||
-DCMAKE_POLICY_DEFAULT_CMP0146="OLD" # BUG FindCUDA
|
||||
|
||||
-DCMAKE_INSTALL_DOCDIR="share/doc/${PF}"
|
||||
-DINSTALL_DOCS="$(usex doc)"
|
||||
-DUSE_CCACHE="no"
|
||||
-DLLVM_STATIC="no"
|
||||
-DOSL_BUILD_TESTS="$(usex test)"
|
||||
-DSTOP_ON_WARNING="no"
|
||||
-DUSE_PARTIO="$(usex partio)"
|
||||
-DUSE_PYTHON="$(usex python)"
|
||||
-DUSE_SIMD="$(IFS=","; echo "${mysimd[*]}")"
|
||||
-DUSE_BATCHED="$(IFS=","; echo "${mybatched[*]}")"
|
||||
-DUSE_LIBCPLUSPLUS="$(usex libcxx)"
|
||||
-DUSE_QT="$(usex gui)"
|
||||
)
|
||||
|
||||
if use debug; then
|
||||
mycmakeargs+=(
|
||||
-DVERBOSE="yes"
|
||||
-DVEC_REPORT="yes"
|
||||
)
|
||||
fi
|
||||
|
||||
if use optix; then
|
||||
cuda_add_sandbox -w
|
||||
addwrite "/proc/self/task/"
|
||||
addpredict "/dev/char/"
|
||||
|
||||
mycmakeargs+=(
|
||||
-DUSE_LLVM_BITCODE="$(usex clang-cuda)"
|
||||
-DCUDA_OPT_FLAG_NVCC="$(get-flag O)"
|
||||
-DCUDA_OPT_FLAG_NVCC="$(get-flag O)"
|
||||
)
|
||||
fi
|
||||
|
||||
if use partio; then
|
||||
mycmakeargs+=(
|
||||
-Dpartio_DIR="${ESYSROOT}/usr"
|
||||
)
|
||||
fi
|
||||
|
||||
if use python; then
|
||||
local -x OPENIMAGEIO_DEBUG=0
|
||||
mycmakeargs+=(
|
||||
-DOpenImageIO_ROOT="${ESYSROOT}/usr"
|
||||
-DPYTHON_VERSION="${EPYTHON#python}"
|
||||
-DPYTHON_SITE_DIR="$(python_get_sitedir)"
|
||||
)
|
||||
fi
|
||||
|
||||
if use test; then
|
||||
if use optix; then
|
||||
local -x CUDAHOSTCXX CUDAHOSTLD
|
||||
CUDAHOSTCXX="$(cuda_get_host_compiler)"
|
||||
CUDAHOSTLD="$(tc-getCXX)"
|
||||
|
||||
mycmakeargs+=(
|
||||
-DOSL_USE_OPTIX="yes"
|
||||
-DOptiX_FIND_QUIETLY="no"
|
||||
-DCUDA_FIND_QUIETLY="no"
|
||||
|
||||
-DOPTIXHOME="${OPTIX_PATH:=${ESYSROOT}/opt/optix}"
|
||||
-DCUDA_TOOLKIT_ROOT_DIR="${CUDA_PATH:=${ESYSROOT}/opt/cuda}"
|
||||
|
||||
-DCUDA_NVCC_FLAGS="--compiler-bindir;${CUDAHOSTCXX}"
|
||||
-DOSL_EXTRA_NVCC_ARGS="--compiler-bindir;${CUDAHOSTCXX}"
|
||||
-DCUDA_VERBOSE_BUILD="yes"
|
||||
)
|
||||
fi
|
||||
fi
|
||||
|
||||
# Environment OPENIMAGEIO_CUDA=0 trumps everything else, turns off
|
||||
# Cuda functionality. We don't even initialize in this case.
|
||||
export OPENIMAGEIO_CUDA=0
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# A bunch of tests only work when installed.
|
||||
# So install them into the temp directory now.
|
||||
DESTDIR="${T}" cmake_build install
|
||||
|
||||
ln -s "${CMAKE_USE_DIR}/src/cmake/" "${BUILD_DIR}/src/cmake" || die
|
||||
|
||||
local -x DEBUG CXXFLAGS LD_LIBRARY_PATH DIR OSL_DIR OSL_SOURCE_DIR PYTHONPATH
|
||||
DEBUG=1 # doubles the floating point tolerance so we avoid FMA related issues
|
||||
CXXFLAGS="-I${T}/usr/include"
|
||||
LD_LIBRARY_PATH="${T}/usr/$(get_libdir)"
|
||||
OSL_DIR="${T}/usr/$(get_libdir)/cmake/OSL"
|
||||
OSL_SOURCE_DIR="${S}"
|
||||
# local -x OSL_TESTSUITE_SKIP_DIFF=1
|
||||
local -x OPENIMAGEIO_DEBUG=0
|
||||
|
||||
if use python; then
|
||||
PYTHONPATH="${BUILD_DIR}/lib/python/site-packages"
|
||||
fi
|
||||
|
||||
if use optix; then
|
||||
cp \
|
||||
"${BUILD_DIR}/src/liboslexec/shadeops_cuda.ptx" \
|
||||
"${BUILD_DIR}/src/testrender/"{optix_raytracer,rend_lib_testrender}".ptx" \
|
||||
"${BUILD_DIR}/src/testshade/"{optix_grid_renderer,rend_lib_testshade}".ptx" \
|
||||
"${BUILD_DIR}/bin/" || die
|
||||
|
||||
# NOTE this should go to cuda eclass
|
||||
cuda_add_sandbox -w
|
||||
addwrite "/proc/self/task/"
|
||||
addpredict "/dev/char/"
|
||||
fi
|
||||
|
||||
local CMAKE_SKIP_TESTS=(
|
||||
"-broken$"
|
||||
|
||||
# broken with in-tree <=dev-libs/optix-7.5.0 and out of date
|
||||
"^example-cuda"
|
||||
|
||||
# outright fail
|
||||
# batchregression
|
||||
"^spline-reg.regress.batched.opt$"
|
||||
"^transform-reg.regress.batched.opt$"
|
||||
"^texture3d-opts-reg.regress.batched.opt$"
|
||||
|
||||
# doesn't handle parameters
|
||||
"^osl-imageio"
|
||||
|
||||
# render
|
||||
"^render-bunny.opt$"
|
||||
"^render-displacement.opt$"
|
||||
"^render-microfacet.opt$"
|
||||
"^render-veachmis.opt$"
|
||||
|
||||
# optix
|
||||
"^render-mx-generalized-schlick.optix$"
|
||||
"^render-mx-generalized-schlick.optix.opt$"
|
||||
"^render-mx-generalized-schlick.optix.fused$"
|
||||
"^render-microfacet.optix.opt$"
|
||||
"^render-microfacet.optix.fused$"
|
||||
)
|
||||
|
||||
local myctestargs=(
|
||||
-LE 'render'
|
||||
# src/build-scripts/ci-test.bash
|
||||
# '--force-new-ctest-process'
|
||||
)
|
||||
|
||||
OPENIMAGEIO_CUDA=0 \
|
||||
cmake_src_test
|
||||
|
||||
einfo ""
|
||||
einfo "testing render tests in isolation"
|
||||
einfo ""
|
||||
|
||||
myctestargs=(
|
||||
-L "render"
|
||||
# src/build-scripts/ci-test.bash
|
||||
'--force-new-ctest-process'
|
||||
--repeat until-pass:10
|
||||
)
|
||||
|
||||
cmake_src_test
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake_src_install
|
||||
|
||||
if [[ -d "${ED}/usr/build-scripts" ]]; then
|
||||
rm -vr "${ED}/usr/build-scripts" || die
|
||||
fi
|
||||
|
||||
if use test; then
|
||||
rm \
|
||||
"${ED}/usr/bin/test"{render,shade{,_dso}} \
|
||||
|| die
|
||||
fi
|
||||
|
||||
if use amd64; then
|
||||
find "${ED}/usr/$(get_libdir)" -type f -name 'lib_*_oslexec.so' -print0 \
|
||||
| while IFS= read -r -d $'\0' batched_lib; do
|
||||
patchelf --set-soname "$(basename "${batched_lib}")" "${batched_lib}" || die
|
||||
done
|
||||
fi
|
||||
}
|
||||
@@ -3,7 +3,8 @@
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..13} )
|
||||
# keep in sync with blender
|
||||
PYTHON_COMPAT=( python3_{11..13} )
|
||||
|
||||
# Check this on updates
|
||||
LLVM_COMPAT=( {18..19} )
|
||||
@@ -27,27 +28,33 @@ LICENSE="BSD"
|
||||
SLOT="0/$(ver_cut 1-2)" # based on SONAME
|
||||
|
||||
X86_CPU_FEATURES=(
|
||||
sse2:sse2 sse3:sse3 ssse3:ssse3 sse4_1:sse4.1 sse4_2:sse4.2
|
||||
avx:avx avx2:avx2 avx512f:avx512f f16c:f16c
|
||||
sse2:sse2
|
||||
sse3:sse3
|
||||
ssse3:ssse3
|
||||
sse4_1:sse4.1
|
||||
sse4_2:sse4.2
|
||||
avx:avx
|
||||
avx2:avx2
|
||||
avx512f:avx512f
|
||||
f16c:f16c
|
||||
)
|
||||
CPU_FEATURES=( "${X86_CPU_FEATURES[@]/#/cpu_flags_x86_}" )
|
||||
|
||||
IUSE="debug doc gui libcxx nofma optix partio test ${CPU_FEATURES[*]%:*} python"
|
||||
IUSE="+clang-cuda debug doc gui libcxx nofma optix partio test ${CPU_FEATURES[*]%:*} python"
|
||||
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}
|
||||
test? ( optix? ( clang-cuda ) )
|
||||
"
|
||||
|
||||
# TODO optix
|
||||
RDEPEND="
|
||||
dev-libs/boost:=
|
||||
dev-libs/pugixml
|
||||
>=media-libs/openimageio-2.4:=
|
||||
$(llvm_gen_dep '
|
||||
llvm-core/clang:${LLVM_SLOT}=
|
||||
llvm-core/llvm:${LLVM_SLOT}=
|
||||
')
|
||||
optix? ( dev-libs/optix[-headers-only] )
|
||||
python? (
|
||||
${PYTHON_DEPS}
|
||||
$(python_gen_cond_dep '
|
||||
@@ -67,6 +74,12 @@ DEPEND="${RDEPEND}
|
||||
sys-libs/zlib
|
||||
test? (
|
||||
media-fonts/droid
|
||||
optix? (
|
||||
clang-cuda? (
|
||||
dev-util/nvidia-cuda-toolkit
|
||||
)
|
||||
dev-libs/optix
|
||||
)
|
||||
)
|
||||
"
|
||||
BDEPEND="
|
||||
@@ -76,11 +89,80 @@ BDEPEND="
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${PN}-boost-config.patch"
|
||||
"${FILESDIR}/${PN}-oslfile.patch"
|
||||
"${FILESDIR}/${PN}-include-cstdint.patch"
|
||||
)
|
||||
|
||||
cuda_get_host_compiler() {
|
||||
if [[ -n "${NVCC_CCBIN}" ]]; then
|
||||
echo "${NVCC_CCBIN}"
|
||||
return
|
||||
fi
|
||||
|
||||
if [[ -n "${CUDAHOSTCXX}" ]]; then
|
||||
echo "${CUDAHOSTCXX}"
|
||||
return
|
||||
fi
|
||||
|
||||
einfo "Trying to find working CUDA host compiler"
|
||||
|
||||
if ! tc-is-gcc && ! tc-is-clang; then
|
||||
die "$(tc-get-compiler-type) compiler is not supported"
|
||||
fi
|
||||
|
||||
local compiler compiler_type compiler_version
|
||||
local package package_version
|
||||
# local -x NVCC_CCBIN
|
||||
local NVCC_CCBIN_default
|
||||
|
||||
compiler_type="$(tc-get-compiler-type)"
|
||||
compiler_version="$("${compiler_type}-major-version")"
|
||||
|
||||
# try the default compiler first
|
||||
NVCC_CCBIN="$(tc-getCXX)"
|
||||
NVCC_CCBIN_default="${NVCC_CCBIN}-${compiler_version}"
|
||||
|
||||
compiler="${NVCC_CCBIN/%-${compiler_version}}"
|
||||
|
||||
# store the package so we can re-use it later
|
||||
if tc-is-gcc; then
|
||||
package="sys-devel/${compiler_type}"
|
||||
elif tc-is-clang; then
|
||||
package="llvm-core/${compiler_type}"
|
||||
else
|
||||
die "$(tc-get-compiler-type) compiler is not supported"
|
||||
fi
|
||||
|
||||
package_version="${package}"
|
||||
|
||||
ebegin "testing ${NVCC_CCBIN_default} (default)"
|
||||
|
||||
while ! nvcc -v -ccbin "${NVCC_CCBIN}" - -x cu <<<"int main(){}" &>> "${T}/cuda_get_host_compiler.log" ; do
|
||||
eend 1
|
||||
|
||||
while true; do
|
||||
# prepare next version
|
||||
if ! package_version="<$(best_version "${package_version}")"; then
|
||||
die "could not find a supported version of ${compiler}"
|
||||
fi
|
||||
|
||||
NVCC_CCBIN="${compiler}-$(ver_cut 1 "${package_version/#<${package}-/}")"
|
||||
|
||||
[[ "${NVCC_CCBIN}" != "${NVCC_CCBIN_default}" ]] && break
|
||||
done
|
||||
ebegin "testing ${NVCC_CCBIN}"
|
||||
done
|
||||
eend $?
|
||||
|
||||
echo "${NVCC_CCBIN}"
|
||||
export NVCC_CCBIN
|
||||
}
|
||||
|
||||
cuda_get_host_native_arch() {
|
||||
[[ -n ${CUDAARCHS} ]] && echo "${CUDAARCHS}"
|
||||
|
||||
__nvcc_device_query || die "failed to query the native device"
|
||||
}
|
||||
|
||||
pkg_setup() {
|
||||
llvm-r1_pkg_setup
|
||||
|
||||
@@ -88,12 +170,8 @@ pkg_setup() {
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
if use optix; then
|
||||
cuda_src_prepare
|
||||
cuda_add_sandbox -w
|
||||
fi
|
||||
|
||||
sed -e "/^install.*llvm_macros.cmake.*cmake/d" -i CMakeLists.txt || die
|
||||
sed -e "/install_targets ( libtestshade )/d" -i src/testshade/CMakeLists.txt || die
|
||||
|
||||
cmake_src_prepare
|
||||
}
|
||||
@@ -166,15 +244,10 @@ src_configure() {
|
||||
# Even if there are no SIMD features selected, it seems like the code will turn on NEON support if it is available.
|
||||
use arm64 && append-flags -flax-vector-conversions
|
||||
|
||||
local gcc
|
||||
gcc="$(tc-getCC)"
|
||||
|
||||
local mycmakeargs=(
|
||||
-DVERBOSE="no"
|
||||
-DCMAKE_POLICY_DEFAULT_CMP0146="OLD" # BUG FindCUDA
|
||||
|
||||
# std::tuple_size_v is c++17
|
||||
-DCMAKE_CXX_STANDARD="17"
|
||||
|
||||
-DCMAKE_INSTALL_DOCDIR="share/doc/${PF}"
|
||||
-DINSTALL_DOCS="$(usex doc)"
|
||||
-DUSE_CCACHE="no"
|
||||
@@ -186,45 +259,67 @@ src_configure() {
|
||||
-DUSE_SIMD="$(IFS=","; echo "${mysimd[*]}")"
|
||||
-DUSE_BATCHED="$(IFS=","; echo "${mybatched[*]}")"
|
||||
-DUSE_LIBCPLUSPLUS="$(usex libcxx)"
|
||||
-DOSL_USE_OPTIX="$(usex optix)"
|
||||
-DUSE_QT="$(usex gui)"
|
||||
|
||||
-DOpenImageIO_ROOT="${EPREFIX}/usr"
|
||||
)
|
||||
|
||||
if use debug; then
|
||||
mycmakeargs+=(
|
||||
-DVERBOSE="yes"
|
||||
-DVEC_REPORT="yes"
|
||||
)
|
||||
fi
|
||||
|
||||
if use optix; then
|
||||
cuda_add_sandbox -w
|
||||
addwrite "/proc/self/task/"
|
||||
addpredict "/dev/char/"
|
||||
|
||||
mycmakeargs+=(
|
||||
-DOptiX_FIND_QUIETLY="no"
|
||||
-DCUDA_FIND_QUIETLY="no"
|
||||
|
||||
-DOPTIXHOME="${EPREFIX}/opt/optix"
|
||||
-DCUDA_TOOLKIT_ROOT_DIR="${EPREFIX}/opt/cuda"
|
||||
|
||||
-DCUDA_NVCC_FLAGS="--compiler-bindir;$(cuda_gccdir)"
|
||||
-DOSL_EXTRA_NVCC_ARGS="--compiler-bindir;$(cuda_gccdir)"
|
||||
-DCUDA_VERBOSE_BUILD="yes"
|
||||
-DUSE_LLVM_BITCODE="$(usex clang-cuda)"
|
||||
-DCUDA_OPT_FLAG_NVCC="$(get-flag O)"
|
||||
-DCUDA_OPT_FLAG_NVCC="$(get-flag O)"
|
||||
)
|
||||
fi
|
||||
|
||||
if use partio; then
|
||||
mycmakeargs+=(
|
||||
-Dpartio_DIR="${EPREFIX}/usr"
|
||||
-Dpartio_DIR="${ESYSROOT}/usr"
|
||||
)
|
||||
fi
|
||||
|
||||
if use python; then
|
||||
local -x OPENIMAGEIO_DEBUG=0
|
||||
mycmakeargs+=(
|
||||
"-DPYTHON_VERSION=${EPYTHON#python}"
|
||||
"-DPYTHON_SITE_DIR=$(python_get_sitedir)"
|
||||
-DOpenImageIO_ROOT="${ESYSROOT}/usr"
|
||||
-DPYTHON_VERSION="${EPYTHON#python}"
|
||||
-DPYTHON_SITE_DIR="$(python_get_sitedir)"
|
||||
)
|
||||
fi
|
||||
|
||||
if use test; then
|
||||
if use optix; then
|
||||
local -x CUDAHOSTCXX CUDAHOSTLD
|
||||
CUDAHOSTCXX="$(cuda_get_host_compiler)"
|
||||
CUDAHOSTLD="$(tc-getCXX)"
|
||||
|
||||
mycmakeargs+=(
|
||||
-DOSL_USE_OPTIX="yes"
|
||||
-DOptiX_FIND_QUIETLY="no"
|
||||
-DCUDA_FIND_QUIETLY="no"
|
||||
|
||||
-DOPTIXHOME="${OPTIX_PATH:=${ESYSROOT}/opt/optix}"
|
||||
-DCUDA_TOOLKIT_ROOT_DIR="${CUDA_PATH:=${ESYSROOT}/opt/cuda}"
|
||||
|
||||
-DCUDA_NVCC_FLAGS="--compiler-bindir;${CUDAHOSTCXX}"
|
||||
-DOSL_EXTRA_NVCC_ARGS="--compiler-bindir;${CUDAHOSTCXX}"
|
||||
-DCUDA_VERBOSE_BUILD="yes"
|
||||
)
|
||||
fi
|
||||
fi
|
||||
|
||||
# Environment OPENIMAGEIO_CUDA=0 trumps everything else, turns off
|
||||
# Cuda functionality. We don't even initialize in this case.
|
||||
export OPENIMAGEIO_CUDA=0
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
@@ -235,89 +330,79 @@ src_test() {
|
||||
|
||||
ln -s "${CMAKE_USE_DIR}/src/cmake/" "${BUILD_DIR}/src/cmake" || die
|
||||
|
||||
if use optix; then
|
||||
cp \
|
||||
"${BUILD_DIR}/src/liboslexec/shadeops_cuda.ptx" \
|
||||
"${BUILD_DIR}/src/testrender/"{optix_raytracer,quad,rend_lib_testrender,sphere,wrapper}".ptx" \
|
||||
"${BUILD_DIR}/src/testshade/"{optix_grid_renderer,rend_lib_testshade}".ptx" \
|
||||
"${BUILD_DIR}/bin/" || die
|
||||
|
||||
# NOTE this should go to cuda eclass
|
||||
addwrite /dev/nvidiactl
|
||||
addwrite /dev/nvidia0
|
||||
addwrite /dev/nvidia-uvm
|
||||
addwrite /dev/nvidia-caps
|
||||
addwrite "/dev/char/"
|
||||
fi
|
||||
|
||||
CMAKE_SKIP_TESTS=(
|
||||
"-broken$"
|
||||
"^render"
|
||||
|
||||
# broken with in-tree <=dev-libs/optix-7.5.0 and out of date
|
||||
"^example-cuda$"
|
||||
|
||||
# outright fail
|
||||
"^testoptix.optix.opt$"
|
||||
"^testoptix-noise.optix.opt$"
|
||||
"^testoptix-reparam.optix.opt$"
|
||||
"^transform-reg.regress.batched.opt$"
|
||||
"^spline-reg.regress.batched.opt$"
|
||||
|
||||
# doesn't handle parameters
|
||||
"^osl-imageio$"
|
||||
"^osl-imageio.opt$"
|
||||
"^osl-imageio.opt.rs_bitcode$"
|
||||
)
|
||||
|
||||
if use optix; then
|
||||
CMAKE_SKIP_TESTS+=(
|
||||
"^color2.optix$"
|
||||
"^color4.optix(|.opt|.fused)$"
|
||||
"^vector2.optix$"
|
||||
"^vector4.optix$"
|
||||
)
|
||||
fi
|
||||
|
||||
myctestargs=(
|
||||
# src/build-scripts/ci-test.bash
|
||||
'--force-new-ctest-process'
|
||||
)
|
||||
|
||||
local -x DEBUG CXXFLAGS LD_LIBRARY_PATH DIR OSL_DIR OSL_SOURCE_DIR PYTHONPATH
|
||||
DEBUG=1 # doubles the floating point tolerance so we avoid FMA related issues
|
||||
CXXFLAGS="-I${T}/usr/include"
|
||||
LD_LIBRARY_PATH="${T}/usr/$(get_libdir)"
|
||||
OSL_DIR="${T}/usr/$(get_libdir)/cmake/OSL"
|
||||
OSL_SOURCE_DIR="${S}"
|
||||
# local -x OSL_TESTSUITE_SKIP_DIFF=1
|
||||
local -x OPENIMAGEIO_DEBUG=0
|
||||
|
||||
if use python; then
|
||||
PYTHONPATH="${BUILD_DIR}/lib/python/site-packages"
|
||||
fi
|
||||
|
||||
if use optix; then
|
||||
cp \
|
||||
"${BUILD_DIR}/src/liboslexec/shadeops_cuda.ptx" \
|
||||
"${BUILD_DIR}/src/testrender/"{optix_raytracer,rend_lib_testrender}".ptx" \
|
||||
"${BUILD_DIR}/src/testshade/"{optix_grid_renderer,rend_lib_testshade}".ptx" \
|
||||
"${BUILD_DIR}/bin/" || die
|
||||
|
||||
# NOTE this should go to cuda eclass
|
||||
cuda_add_sandbox -w
|
||||
addwrite "/proc/self/task/"
|
||||
addpredict "/dev/char/"
|
||||
fi
|
||||
|
||||
local CMAKE_SKIP_TESTS=(
|
||||
"-broken$"
|
||||
|
||||
# broken with in-tree <=dev-libs/optix-7.5.0 and out of date
|
||||
"^example-cuda"
|
||||
|
||||
# outright fail
|
||||
# batchregression
|
||||
"^spline-reg.regress.batched.opt$"
|
||||
"^transform-reg.regress.batched.opt$"
|
||||
"^texture3d-opts-reg.regress.batched.opt$"
|
||||
|
||||
# doesn't handle parameters
|
||||
"^osl-imageio"
|
||||
|
||||
# render
|
||||
"^render-bunny.opt$"
|
||||
"^render-displacement.opt$"
|
||||
"^render-microfacet.opt$"
|
||||
"^render-veachmis.opt$"
|
||||
|
||||
# optix
|
||||
"^render-mx-generalized-schlick.optix$"
|
||||
"^render-mx-generalized-schlick.optix.opt$"
|
||||
"^render-mx-generalized-schlick.optix.fused$"
|
||||
"^render-microfacet.optix.opt$"
|
||||
"^render-microfacet.optix.fused$"
|
||||
)
|
||||
|
||||
local myctestargs=(
|
||||
-LE 'render'
|
||||
# src/build-scripts/ci-test.bash
|
||||
# '--force-new-ctest-process'
|
||||
)
|
||||
|
||||
OPENIMAGEIO_CUDA=0 \
|
||||
cmake_src_test
|
||||
|
||||
einfo ""
|
||||
einfo "testing render tests in isolation"
|
||||
einfo ""
|
||||
|
||||
CMAKE_SKIP_TESTS=(
|
||||
"^render-background$"
|
||||
"^render-mx-furnace-sheen$"
|
||||
"^render-mx-burley-diffuse$"
|
||||
"^render-mx-conductor$"
|
||||
"^render-microfacet$"
|
||||
"^render-veachmis$"
|
||||
"^render-ward$"
|
||||
"^render-raytypes.opt$"
|
||||
"^render-raytypes.opt.rs_bitcode$"
|
||||
)
|
||||
|
||||
myctestargs=(
|
||||
-L "render"
|
||||
# src/build-scripts/ci-test.bash
|
||||
'--force-new-ctest-process'
|
||||
--repeat until-pass:10
|
||||
-R "^render"
|
||||
)
|
||||
|
||||
cmake_src_test
|
||||
@@ -333,7 +418,6 @@ src_install() {
|
||||
if use test; then
|
||||
rm \
|
||||
"${ED}/usr/bin/test"{render,shade{,_dso}} \
|
||||
"${ED}/usr/$(get_libdir)/libtestshade.so"* \
|
||||
|| die
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user