You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
194 lines
5.1 KiB
194 lines
5.1 KiB
2 years ago
|
# Copyright 2022-2023 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=8
|
||
|
|
||
|
PYTHON_COMPAT=( python3_{9..11} )
|
||
2 years ago
|
inherit python-single-r1 cmake cuda flag-o-matic
|
||
2 years ago
|
|
||
|
MYPN=pytorch
|
||
|
MYP=${MYPN}-${PV}
|
||
|
|
||
|
DESCRIPTION="A deep learning framework"
|
||
|
HOMEPAGE="https://pytorch.org/"
|
||
|
SRC_URI="https://github.com/pytorch/${MYPN}/archive/refs/tags/v${PV}.tar.gz
|
||
|
-> ${MYP}.tar.gz"
|
||
|
|
||
|
LICENSE="BSD"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64"
|
||
2 years ago
|
IUSE="cuda distributed fbgemm ffmpeg gloo mpi nnpack +numpy opencl opencv openmp qnnpack tensorpipe xnnpack"
|
||
2 years ago
|
RESTRICT="test"
|
||
|
REQUIRED_USE="
|
||
|
${PYTHON_REQUIRED_USE}
|
||
|
ffmpeg? ( opencv )
|
||
2 years ago
|
mpi? ( distributed )
|
||
|
tensorpipe? ( distributed )
|
||
2 years ago
|
gloo? ( distributed )
|
||
2 years ago
|
" # ?? ( cuda rocm )
|
||
|
|
||
2 years ago
|
# CUDA 12 not supported yet: https://github.com/pytorch/pytorch/issues/91122
|
||
2 years ago
|
RDEPEND="
|
||
|
${PYTHON_DEPS}
|
||
|
dev-cpp/gflags:=
|
||
|
>=dev-cpp/glog-0.5.0
|
||
|
dev-libs/cpuinfo
|
||
|
dev-libs/libfmt
|
||
|
dev-libs/protobuf:=
|
||
|
dev-libs/pthreadpool
|
||
|
dev-libs/sleef
|
||
|
sci-libs/lapack
|
||
|
>=sci-libs/onnx-1.12.0
|
||
|
sci-libs/foxi
|
||
|
cuda? (
|
||
|
=dev-libs/cudnn-8*
|
||
|
dev-libs/cudnn-frontend:0/8
|
||
2 years ago
|
<dev-util/nvidia-cuda-toolkit-12:=[profiler]
|
||
2 years ago
|
)
|
||
2 years ago
|
fbgemm? ( dev-libs/FBGEMM )
|
||
2 years ago
|
ffmpeg? ( media-video/ffmpeg:= )
|
||
2 years ago
|
gloo? ( sci-libs/gloo[cuda?] )
|
||
2 years ago
|
mpi? ( sys-cluster/openmpi )
|
||
2 years ago
|
nnpack? ( sci-libs/NNPACK )
|
||
|
numpy? ( $(python_gen_cond_dep '
|
||
|
dev-python/numpy[${PYTHON_USEDEP}]
|
||
|
') )
|
||
|
opencl? ( virtual/opencl )
|
||
|
opencv? ( media-libs/opencv:= )
|
||
|
qnnpack? ( sci-libs/QNNPACK )
|
||
2 years ago
|
tensorpipe? ( sci-libs/tensorpipe )
|
||
2 years ago
|
xnnpack? ( sci-libs/XNNPACK )
|
||
|
"
|
||
|
DEPEND="
|
||
|
${RDEPEND}
|
||
|
dev-cpp/eigen
|
||
2 years ago
|
cuda? ( dev-libs/cutlass )
|
||
2 years ago
|
dev-libs/psimd
|
||
|
dev-libs/FP16
|
||
|
dev-libs/FXdiv
|
||
|
dev-libs/pocketfft
|
||
|
dev-libs/flatbuffers
|
||
|
sci-libs/kineto
|
||
|
$(python_gen_cond_dep '
|
||
|
dev-python/pyyaml[${PYTHON_USEDEP}]
|
||
|
dev-python/pybind11[${PYTHON_USEDEP}]
|
||
|
')
|
||
|
"
|
||
|
|
||
|
S="${WORKDIR}"/${MYP}
|
||
|
|
||
|
PATCHES=(
|
||
|
"${FILESDIR}"/${PN}-1.13.0-gentoo.patch
|
||
|
"${FILESDIR}"/${PN}-1.13.0-install-dirs.patch
|
||
|
"${FILESDIR}"/${PN}-1.12.0-glog-0.6.0.patch
|
||
|
"${FILESDIR}"/${PN}-1.12.0-clang.patch
|
||
2 years ago
|
"${FILESDIR}"/${P}-tensorpipe.patch
|
||
2 years ago
|
)
|
||
|
|
||
|
src_prepare() {
|
||
|
filter-lto #bug 862672
|
||
2 years ago
|
sed -i \
|
||
|
-e "/third_party\/gloo/d" \
|
||
|
cmake/Dependencies.cmake \
|
||
|
|| die
|
||
2 years ago
|
cmake_src_prepare
|
||
|
pushd torch/csrc/jit/serialization || die
|
||
|
flatc --cpp --gen-mutable --scoped-enums mobile_bytecode.fbs || die
|
||
|
popd
|
||
|
}
|
||
|
|
||
|
src_configure() {
|
||
|
if use cuda && [[ -z ${TORCH_CUDA_ARCH_LIST} ]]; then
|
||
|
ewarn "WARNING: caffe2 is being built with its default CUDA compute capabilities: 3.5 and 7.0."
|
||
|
ewarn "These may not be optimal for your GPU."
|
||
|
ewarn ""
|
||
|
ewarn "To configure caffe2 with the CUDA compute capability that is optimal for your GPU,"
|
||
|
ewarn "set TORCH_CUDA_ARCH_LIST in your make.conf, and re-emerge caffe2."
|
||
|
ewarn "For example, to use CUDA capability 7.5 & 3.5, add: TORCH_CUDA_ARCH_LIST=7.5,3.5"
|
||
|
ewarn "For a Maxwell model GPU, an example value would be: TORCH_CUDA_ARCH_LIST=Maxwell"
|
||
|
ewarn ""
|
||
|
ewarn "You can look up your GPU's CUDA compute capability at https://developer.nvidia.com/cuda-gpus"
|
||
|
ewarn "or by running /opt/cuda/extras/demo_suite/deviceQuery | grep 'CUDA Capability'"
|
||
|
fi
|
||
|
|
||
|
local mycmakeargs=(
|
||
|
-DBUILD_CUSTOM_PROTOBUF=OFF
|
||
|
-DBUILD_SHARED_LIBS=ON
|
||
|
|
||
|
-DUSE_CCACHE=OFF
|
||
|
-DUSE_CUDA=$(usex cuda)
|
||
|
-DUSE_CUDNN=$(usex cuda)
|
||
|
-DUSE_FAST_NVCC=$(usex cuda)
|
||
|
-DTORCH_CUDA_ARCH_LIST="${TORCH_CUDA_ARCH_LIST:-3.5 7.0}"
|
||
2 years ago
|
-DUSE_DISTRIBUTED=$(usex distributed)
|
||
|
-DUSE_MPI=$(usex mpi)
|
||
2 years ago
|
-DUSE_FAKELOWP=OFF
|
||
2 years ago
|
-DUSE_FBGEMM=$(usex fbgemm)
|
||
2 years ago
|
-DUSE_FFMPEG=$(usex ffmpeg)
|
||
|
-DUSE_GFLAGS=ON
|
||
|
-DUSE_GLOG=ON
|
||
2 years ago
|
-DUSE_GLOO=$(usex gloo)
|
||
2 years ago
|
-DUSE_KINETO=OFF # TODO
|
||
|
-DUSE_LEVELDB=OFF
|
||
|
-DUSE_MAGMA=OFF # TODO: In GURU as sci-libs/magma
|
||
|
-DUSE_MKLDNN=OFF
|
||
|
-DUSE_NCCL=OFF # TODO: NVIDIA Collective Communication Library
|
||
|
-DUSE_NNPACK=$(usex nnpack)
|
||
|
-DUSE_QNNPACK=$(usex qnnpack)
|
||
|
-DUSE_XNNPACK=$(usex xnnpack)
|
||
|
-DUSE_SYSTEM_XNNPACK=$(usex xnnpack)
|
||
2 years ago
|
-DUSE_TENSORPIPE=$(usex tensorpipe)
|
||
2 years ago
|
-DUSE_PYTORCH_QNNPACK=OFF
|
||
|
-DUSE_NUMPY=$(usex numpy)
|
||
|
-DUSE_OPENCL=$(usex opencl)
|
||
|
-DUSE_OPENCV=$(usex opencv)
|
||
|
-DUSE_OPENMP=$(usex openmp)
|
||
|
-DUSE_ROCM=OFF # TODO
|
||
|
-DUSE_SYSTEM_CPUINFO=ON
|
||
|
-DUSE_SYSTEM_PYBIND11=ON
|
||
2 years ago
|
-DUSE_UCC=OFF
|
||
2 years ago
|
-DUSE_VALGRIND=OFF
|
||
|
-DPYBIND11_PYTHON_VERSION="${EPYTHON#python}"
|
||
|
-DPYTHON_EXECUTABLE="${PYTHON}"
|
||
|
-DUSE_ITT=OFF
|
||
2 years ago
|
-DBLAS=Eigen # avoid the use of MKL, if found on the system
|
||
2 years ago
|
-DUSE_SYSTEM_EIGEN_INSTALL=ON
|
||
|
-DUSE_SYSTEM_PTHREADPOOL=ON
|
||
|
-DUSE_SYSTEM_FXDIV=ON
|
||
|
-DUSE_SYSTEM_FP16=ON
|
||
|
-DUSE_SYSTEM_GLOO=ON
|
||
|
-DUSE_SYSTEM_ONNX=ON
|
||
|
-DUSE_SYSTEM_SLEEF=ON
|
||
|
|
||
|
-Wno-dev
|
||
|
-DTORCH_INSTALL_LIB_DIR="${EPREFIX}"/usr/$(get_libdir)
|
||
|
-DLIBSHM_INSTALL_LIB_SUBDIR="${EPREFIX}"/usr/$(get_libdir)
|
||
|
)
|
||
|
|
||
2 years ago
|
if use cuda; then
|
||
|
addpredict "/dev/nvidiactl" # bug 867706
|
||
2 years ago
|
addpredict "/dev/char"
|
||
2 years ago
|
|
||
|
mycmakeargs+=(
|
||
|
-DCMAKE_CUDA_FLAGS="$(cuda_gccdir -f | tr -d \")"
|
||
|
)
|
||
|
fi
|
||
2 years ago
|
cmake_src_configure
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
cmake_src_install
|
||
|
|
||
|
insinto "/var/lib/${PN}"
|
||
|
doins "${BUILD_DIR}"/CMakeCache.txt
|
||
|
|
||
|
rm -rf python
|
||
|
mkdir -p python/torch/include || die
|
||
|
mv "${ED}"/usr/lib/python*/site-packages/caffe2 python/ || die
|
||
|
mv "${ED}"/usr/include/torch python/torch/include || die
|
||
|
cp torch/version.py python/torch/ || die
|
||
2 years ago
|
rm -rf "${ED}"/var/tmp || die
|
||
2 years ago
|
python_domodule python/caffe2
|
||
|
python_domodule python/torch
|
||
|
}
|