commit:     a9f1d698f53d163439dd88e2427ac266f0f58642
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  1 06:17:30 2025 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Tue Jul  1 06:18:59 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9f1d698

sci-ml/caffe2: add 2.7.1

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 sci-ml/caffe2/Manifest            |   1 +
 sci-ml/caffe2/caffe2-2.7.1.ebuild | 366 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 367 insertions(+)

diff --git a/sci-ml/caffe2/Manifest b/sci-ml/caffe2/Manifest
index 84648ef05b69..8d81a58682be 100644
--- a/sci-ml/caffe2/Manifest
+++ b/sci-ml/caffe2/Manifest
@@ -6,3 +6,4 @@ DIST pytorch-2.4.1.tar.gz 115029469 BLAKE2B 
c2909ff27d527bc57cba56b780d3b8cd07a0
 DIST pytorch-2.5.1.tar.gz 116091366 BLAKE2B 
7838b17562b94ffc7d798031348689db607dd5eae2a3c35be365972e2b52a2c1b12067068d5aca5ab00cf0977d9c2c3c9ae5337d69534c864c732e6256cbeef6
 SHA512 
a913a466324a65fa3d79c5e9ad4d605fc7976f0134fda2f81aaa3cea29d56926604999b8a238759646d211e63b47bbb446cdffa86ca8defd8159f11e30301289
 DIST pytorch-2.6.0.tar.gz 119594438 BLAKE2B 
3152eb341cf42295e147e59625beb9c06608aa4b78f9618c1c0024b10c1c767715d07fe8c4be52d029ac47f808cd0d5e65c9530ec90d951a64b993083b4067ad
 SHA512 
a70da80ff09d226085e18228132cf6bb236ad8cc47eed52375d0d2a615f09dd33849da947270b5670c184eab60cb8e2adf11d801babfbda7aa621400501d07b0
 DIST pytorch-2.7.0.tar.gz 50197290 BLAKE2B 
2a317d1e9b0d8876f1593382246cd9f786eff3c1b8602353c5e0010dc8414720c5de61886361843a0c33268830c784963a89b410b361e1b67636e652f6a6a2eb
 SHA512 
63eb0363ea68d23567f5524ee8b51756d9302bbe1cbefa367335ab5ebe652523dba75fa417ea3e7eedfc67aa4bef1434c8b7e3dfde2152061b91b6e489763a55
+DIST pytorch-2.7.1.tar.gz 50203605 BLAKE2B 
3f4b2643d86fe9ff30b2f335353dfe6a8e222bcc12143bc5d09268fb37bfd42f9451620e6e0db225c3c3e7930c999115fdd2ed62b7eae93b0d5e233270c7c760
 SHA512 
a9fc2252af9031c2cd46dde558c491aea8bc322fb80157a7760f300a44b759d4bfe866f030fbb974b80493057cfff4dd512498f99a100ed6d05bf620258ed37e

diff --git a/sci-ml/caffe2/caffe2-2.7.1.ebuild 
b/sci-ml/caffe2/caffe2-2.7.1.ebuild
new file mode 100644
index 000000000000..9a8498a37554
--- /dev/null
+++ b/sci-ml/caffe2/caffe2-2.7.1.ebuild
@@ -0,0 +1,366 @@
+# Copyright 2022-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..13} )
+ROCM_VERSION=6.1
+inherit python-single-r1 cmake cuda flag-o-matic prefix rocm toolchain-funcs
+
+MYPN=pytorch
+MYP=${MYPN}-${PV}
+
+# caffe2-2.6.0 depends on future version of composable kernel
+# TODO: replace it with RDEPEND in the future
+CK_COMMIT=8086bbe3a78d931eb96fe12fdc014082e18d18d3
+CK_P=composable_kernel-${CK_COMMIT:0:8}
+
+FLASH_PV=2.7.4
+FLASH_PN=flash-attention
+FLASH_P=${FLASH_PN}-${FLASH_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
+       rocm? (
+               
https://github.com/ROCm/composable_kernel/archive/${CK_COMMIT}.tar.gz
+               -> ${CK_P}.tar.gz
+       )
+       flash? (
+               
https://github.com/Dao-AILab/${FLASH_PN}/archive/refs/tags/v${FLASH_PV}.tar.gz
+               -> ${FLASH_P}.gh.tar.gz
+       )
+"
+
+S="${WORKDIR}"/${MYP}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="cuda cusparselt distributed fbgemm flash gloo memefficient mkl mpi 
nnpack +numpy
+       onednn openblas opencl openmp qnnpack rocm xnnpack"
+RESTRICT="test"
+REQUIRED_USE="
+       ${PYTHON_REQUIRED_USE}
+       mpi? ( distributed )
+       gloo? ( distributed )
+       ?? ( cuda rocm )
+       rocm? (
+               || ( ${ROCM_REQUIRED_USE} )
+               !flash
+       )
+"
+
+RDEPEND="
+       ${PYTHON_DEPS}
+       dev-cpp/abseil-cpp:=
+       dev-cpp/gflags:=
+       >=dev-cpp/glog-0.5.0
+       dev-cpp/nlohmann_json
+       dev-cpp/opentelemetry-cpp
+       dev-libs/cpuinfo
+       dev-libs/libfmt:=
+       dev-libs/protobuf:=
+       dev-libs/pthreadpool
+       dev-libs/sleef
+       sci-ml/foxi
+       ~sci-ml/kineto-0.4.0_p20250214
+       sci-ml/onnx
+       virtual/lapack
+       cuda? (
+               dev-libs/cudnn
+               >=sci-ml/cudnn-frontend-1.0.3:0/8
+               dev-util/nvidia-cuda-toolkit:=[profiler]
+               cusparselt? ( dev-libs/cusparselt )
+       )
+       fbgemm? ( sci-ml/FBGEMM )
+       gloo? ( sci-ml/gloo[cuda?] )
+       mpi? ( virtual/mpi )
+       nnpack? ( sci-ml/NNPACK )
+       numpy? ( $(python_gen_cond_dep '
+               dev-python/numpy[${PYTHON_USEDEP}]
+               ') )
+       onednn? ( =sci-ml/oneDNN-3.5* )
+       opencl? ( virtual/opencl )
+       qnnpack? (
+               !sci-libs/QNNPACK
+               sci-ml/gemmlowp
+       )
+       rocm? (
+               >=dev-libs/rccl-6.1      <dev-libs/rccl-6.5
+               >=dev-util/hip-6.1       <dev-util/hip-6.5
+               >=dev-util/roctracer-6.1 <dev-util/roctracer-6.5
+               >=sci-libs/hipBLAS-6.1   <sci-libs/hipBLAS-6.5
+               >=sci-libs/hipBLASLt-6.1 <sci-libs/hipBLASLt-6.5
+               >=sci-libs/hipCUB-6.1    <sci-libs/hipCUB-6.5
+               >=sci-libs/hipFFT-6.1    <sci-libs/hipFFT-6.5
+               >=sci-libs/hipRAND-6.1   <sci-libs/hipRAND-6.5
+               >=sci-libs/hipSOLVER-6.1 <sci-libs/hipSOLVER-6.5
+               >=sci-libs/hipSPARSE-6.1 <sci-libs/hipSPARSE-6.5
+               >=sci-libs/miopen-6.1    <sci-libs/miopen-6.5
+               >=sci-libs/rocPRIM-6.1   <sci-libs/rocPRIM-6.5
+               >=sci-libs/rocThrust-6.1 <sci-libs/rocThrust-6.5
+       )
+       distributed? (
+               sci-ml/tensorpipe[cuda?]
+               dev-cpp/cpp-httplib
+       )
+       xnnpack? ( >=sci-ml/XNNPACK-2024.11 )
+       mkl? ( sci-libs/mkl )
+       openblas? ( sci-libs/openblas )
+"
+
+DEPEND="
+       ${RDEPEND}
+       dev-libs/flatbuffers
+       dev-libs/FXdiv
+       dev-libs/pocketfft
+       dev-libs/psimd
+       sci-ml/FP16
+       $(python_gen_cond_dep '
+               dev-python/pybind11[${PYTHON_USEDEP}]
+               dev-python/pyyaml[${PYTHON_USEDEP}]
+               dev-python/typing-extensions[${PYTHON_USEDEP}]
+       ')
+       cuda? ( ~dev-libs/cutlass-3.8.0 )
+       onednn? ( sci-ml/ideep )
+       qnnpack? ( dev-libs/clog )
+"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-2.5.1-unbundle_fmt.patch
+       "${FILESDIR}"/${PN}-2.5.1-unbundle_kineto.patch
+       "${FILESDIR}"/${PN}-2.5.1-cudnn_include_fix.patch
+       "${FILESDIR}"/${PN}-2.7.0-gentoo.patch
+       "${FILESDIR}"/${PN}-2.4.0-cpp-httplib.patch
+       "${FILESDIR}"/${PN}-2.5.1-glog-0.6.0.patch
+       "${FILESDIR}"/${PN}-2.5.1-newfix-functorch-install.patch
+       "${FILESDIR}"/${PN}-2.6.0-rocm-fix-std-cpp17.patch
+       "${FILESDIR}"/${PN}-2.7.0-cmake.patch
+       "${FILESDIR}"/${PN}-2.7.0-glog-0.7.1.patch
+       "${FILESDIR}"/${PN}-2.7.0-llvm.patch
+)
+
+src_prepare() {
+       if use flash; then
+               mv "${WORKDIR}"/${FLASH_P}/* third_party/${FLASH_PN}/ || die
+       fi
+       filter-lto #bug 862672
+
+       # Unbundle fmt
+       sed -i \
+               -e 's|::fmt-header-only||' \
+               c10/CMakeLists.txt \
+               cmake/Dependencies.cmake \
+               torch/CMakeLists.txt \
+               || die
+
+       # Drop third_party from CMake tree
+       sed -i \
+               -e '/add_subdirectory.*third_party/d' \
+               CMakeLists.txt \
+               cmake/Dependencies.cmake \
+               cmake/ProtoBuf.cmake \
+               aten/src/ATen/CMakeLists.txt \
+               || die
+       # Change libc10* path
+       sed -i \
+               -e "/EXPORT/s|DESTINATION lib)|DESTINATION $(get_libdir))|" \
+               c10/cuda/CMakeLists.txt \
+               c10/CMakeLists.txt \
+               c10/hip/CMakeLists.txt \
+               || die
+       sed -i \
+               -e '/Using pocketfft in directory:/d' \
+               cmake/Dependencies.cmake \
+               || die
+
+       # Noisy warnings from Logging.h
+       sed -i 's/-Wextra-semi//' cmake/public/utils.cmake || die
+
+       cmake_src_prepare
+       pushd torch/csrc/jit/serialization || die
+       flatc --cpp --gen-mutable --scoped-enums mobile_bytecode.fbs || die
+       popd
+
+       # prefixify the hardcoded paths, after all patches are applied
+       hprefixify \
+               aten/CMakeLists.txt \
+               caffe2/CMakeLists.txt \
+               cmake/Metal.cmake \
+               cmake/Modules/*.cmake \
+               cmake/Modules_CUDA_fix/FindCUDNN.cmake \
+               cmake/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake \
+               
cmake/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake \
+               cmake/public/LoadHIP.cmake \
+               cmake/public/cuda.cmake \
+               cmake/Dependencies.cmake \
+               torch/CMakeLists.txt \
+               CMakeLists.txt
+
+       if use rocm; then
+               sed -e "s:/opt/rocm:/usr:" \
+                       -e "s:lib/cmake:$(get_libdir)/cmake:g" \
+                       -i cmake/public/LoadHIP.cmake || die
+
+               # TODO: delete, when caffe2 depends on systemwide 
composable_kernel
+               sed -e 
"s:third_party/composable_kernel:../composable_kernel-${CK_COMMIT}:g" \
+                       -i aten/src/ATen/CMakeLists.txt || die
+
+               if tc-is-clang; then
+                       # Systemwide gcc (for absl and at::TensorBase) + hipcc 
(llvm>=18) need abi-compat=17.
+                       # But systemwide clang>=18 + hipcc (>=llvm-18) need 
opposite!
+                       # See also: 
https://github.com/llvm/llvm-project/issues/102443#issuecomment-2329726287
+                       sed '/-fclang-abi-compat=17/d' -i 
cmake/Dependencies.cmake || die
+               fi
+
+               # Workaround for libc++ issue 
https://github.com/llvm/llvm-project/issues/100802
+               sed 's/std::memcpy/memcpy/g' -i c10/util/Half.h || die
+
+               ebegin "HIPifying cuda sources"
+               ${EPYTHON} tools/amd_build/build_amd.py || die
+               eend $?
+       fi
+}
+
+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
+               -DLIBSHM_INSTALL_LIB_SUBDIR="${EPREFIX}"/usr/$(get_libdir)
+               -DPython_EXECUTABLE="${PYTHON}"
+               -DTORCH_INSTALL_LIB_DIR="${EPREFIX}"/usr/$(get_libdir)
+               -DUSE_CCACHE=OFF
+               -DUSE_CUDA=$(usex cuda)
+               -DUSE_DISTRIBUTED=$(usex distributed)
+               -DUSE_FAKELOWP=OFF
+               -DUSE_FBGEMM=$(usex fbgemm)
+               -DUSE_FLASH_ATTENTION=$(usex flash)
+               -DUSE_GFLAGS=ON
+               -DUSE_GLOG=ON
+               -DUSE_GLOO=$(usex gloo)
+               -DUSE_ITT=OFF
+               -DUSE_KINETO=ON
+               -DUSE_KLEIDIAI=OFF # TODO
+               -DUSE_MAGMA=OFF # TODO: In GURU as sci-libs/magma
+               -DUSE_MEM_EFF_ATTENTION=$(usex memefficient)
+               -DUSE_MKLDNN=$(usex onednn)
+               -DUSE_MPI=$(usex mpi)
+               -DUSE_NCCL=OFF
+               -DUSE_NNPACK=$(usex nnpack)
+               -DUSE_NUMA=OFF
+               -DUSE_NUMPY=$(usex numpy)
+               -DUSE_OPENCL=$(usex opencl)
+               -DUSE_OPENMP=$(usex openmp)
+               -DUSE_PYTORCH_QNNPACK=$(usex qnnpack)
+               -DUSE_PYTORCH_METAL=OFF
+               -DUSE_ROCM=$(usex rocm)
+               -DUSE_SYSTEM_CPUINFO=ON
+               -DUSE_SYSTEM_EIGEN_INSTALL=ON
+               -DUSE_SYSTEM_FP16=ON
+               -DUSE_SYSTEM_FXDIV=ON
+               -DUSE_SYSTEM_GLOO=ON
+               -DUSE_SYSTEM_NVTX=ON
+               -DUSE_SYSTEM_ONNX=ON
+               -DUSE_SYSTEM_PSIMD=ON
+               -DUSE_SYSTEM_PTHREADPOOL=ON
+               -DUSE_SYSTEM_PYBIND11=ON
+               -DUSE_SYSTEM_SLEEF=ON
+               -DUSE_SYSTEM_XNNPACK=$(usex xnnpack)
+               -DUSE_TENSORPIPE=$(usex distributed)
+               -DUSE_UCC=OFF
+               -DUSE_VALGRIND=OFF
+               -DUSE_XNNPACK=$(usex xnnpack)
+               -DUSE_XPU=OFF
+               -Wno-dev
+       )
+
+       if use mkl; then
+               mycmakeargs+=(-DBLAS=MKL)
+       elif use openblas; then
+               mycmakeargs+=(-DBLAS=OpenBLAS)
+       else
+               mycmakeargs+=(-DBLAS=Generic -DBLAS_LIBRARIES=)
+       fi
+
+       if use cuda; then
+               addpredict "/dev/nvidiactl" # bug 867706
+               addpredict "/dev/char"
+               addpredict "/proc/self/task" # bug 926116
+
+               mycmakeargs+=(
+                       -DUSE_CUDNN=ON
+                       -DTORCH_CUDA_ARCH_LIST="${TORCH_CUDA_ARCH_LIST:-3.5 
7.0}"
+                       -DUSE_NCCL=OFF # TODO: NVIDIA Collective Communication 
Library
+                       -DCMAKE_CUDA_FLAGS="$(cuda_gccdir -f | tr -d \")"
+                       -DUSE_CUSPARSELT=$(usex cusparselt)
+               )
+       elif use rocm; then
+               export PYTORCH_ROCM_ARCH="$(get_amdgpu_flags)"
+
+               mycmakeargs+=(
+                       -DUSE_NCCL=ON
+                       -DUSE_SYSTEM_NCCL=ON
+                       -DCMAKE_REQUIRE_FIND_PACKAGE_HIP=ON
+               )
+
+               # ROCm libraries produce too much warnings
+               append-cxxflags -Wno-deprecated-declarations -Wno-unused-result 
-Wno-unused-value
+       fi
+
+       if use onednn; then
+               mycmakeargs+=(
+                       -DMKLDNN_FOUND=ON
+                       -DMKLDNN_LIBRARIES=dnnl
+                       
-DMKLDNN_INCLUDE_DIR="${ESYSROOT}/usr/include/oneapi/dnnl"
+               )
+       fi
+
+       cmake_src_configure
+}
+
+src_compile() {
+       PYTORCH_BUILD_VERSION=${PV} \
+       PYTORCH_BUILD_NUMBER=0 \
+       cmake_src_compile
+}
+
+python_install() {
+       python_domodule python/torch
+       mkdir "${D}"$(python_get_sitedir)/torch/bin || die
+       mkdir "${D}"$(python_get_sitedir)/torch/lib || die
+       mkdir "${D}"$(python_get_sitedir)/torch/include || die
+       ln -s ../../../../../include/torch \
+               "${D}$(python_get_sitedir)"/torch/include/torch || die # bug 
923269
+       ln -s ../../../../../bin/torch_shm_manager \
+               "${D}"/$(python_get_sitedir)/torch/bin/torch_shm_manager || die
+       ln -s ../../../../../$(get_libdir)/libtorch_global_deps.so \
+               "${D}"/$(python_get_sitedir)/torch/lib/libtorch_global_deps.so 
|| die
+}
+
+src_install() {
+       cmake_src_install
+
+       # Used by pytorch ebuild
+       insinto "/var/lib/${PN}"
+       doins "${BUILD_DIR}"/CMakeCache.txt
+       dostrip -x /var/lib/${PN}/functorch.so
+
+       rm -rf python
+       mkdir -p python/torch || die
+       cp torch/version.py python/torch/ || die
+       python_install
+}

Reply via email to