├── .ci_support ├── README ├── linux_64_blas_implgenericchannel_targetsconda-forge_maincuda_compiler_version12.9is_rcFalse.yaml ├── linux_64_blas_implgenericchannel_targetsconda-forge_maincuda_compiler_versionNoneis_rcFalse.yaml ├── linux_64_blas_implmklchannel_targetsconda-forge_maincuda_compiler_version12.9is_rcFalse.yaml ├── linux_64_blas_implmklchannel_targetsconda-forge_maincuda_compiler_versionNoneis_rcFalse.yaml ├── linux_aarch64_channel_targetsconda-forge_maincuda_compiler_version12.9is_rcFalse.yaml ├── linux_aarch64_channel_targetsconda-forge_maincuda_compiler_versionNoneis_rcFalse.yaml ├── migrations │ ├── absl_grpc_proto.yaml │ ├── absl_grpc_proto_25Q2.yaml │ ├── cuda129.yaml │ ├── fmt12_spdlog116.yaml │ ├── mkl2025.yaml │ └── pybind11_abi11.yaml ├── osx_64_blas_implgenericchannel_targetsconda-forge_mainis_rcFalse.yaml ├── osx_64_blas_implmklchannel_targetsconda-forge_mainis_rcFalse.yaml ├── osx_arm64_channel_targetsconda-forge_mainis_rcFalse.yaml ├── win_64_channel_targetsconda-forge_maincuda_compiler_version12.8is_rcFalse.yaml └── win_64_channel_targetsconda-forge_maincuda_compiler_versionNoneis_rcFalse.yaml ├── .circleci └── config.yml ├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ └── conda-build.yml ├── .gitignore ├── .scripts ├── build_steps.sh ├── create_conda_build_artifacts.bat ├── create_conda_build_artifacts.sh ├── download_osx_sdk.sh ├── logging_utils.sh ├── run_docker_build.sh ├── run_osx_build.sh └── run_win_build.bat ├── LICENSE.txt ├── README.md ├── conda-forge.yml └── recipe ├── README.md ├── bld.bat ├── build.sh ├── cmake_test ├── CMakeLists.txt └── main.cpp ├── conda_build_config.yaml ├── meta.yaml ├── patches ├── 0001-Force-usage-of-python-3-and-error-without-numpy.patch ├── 0002-Fix-duplicate-linker-script.patch ├── 0003-Allow-overriding-CUDA-related-paths.patch ├── 0004-Use-BLAS_USE_CBLAS_DOT-for-OpenBLAS-builds.patch ├── 0005-Fix-FindOpenBLAS.patch ├── 0006-point-include-paths-to-Conda-prefix-include-dir.patch ├── 0007-Add-conda-prefix-to-inductor-include-lib-paths.patch ├── 0008-make-ATEN_INCLUDE_DIR-relative-to-TORCH_INSTALL_PREF.patch ├── 0009-remove-DESTINATION-lib-from-CMake-install-TARGETS-di.patch ├── 0010-avoid-deprecated-find_package-CUDA-in-caffe2-CMake-m.patch ├── 0011-Fix-CUPTI-lookup-to-include-target-directory.patch ├── 0012-skip-test_norm_matrix_degenerate_shapes-on-numpy-2.3.patch ├── 0013-Define-PY_SSIZE_T_CLEAN-before-include-Python.h.patch ├── 0014-Add-USE_SYSTEM-options-for-KLEIDI-CUDNN_FRONTEND-CUT.patch ├── 0015-Fix-building-kineto-against-system-fmt.patch ├── 0016-Attempt-to-fix-torch.backends.cudnn.rnn-import.patch └── 0018-Use-Intel-LLVM-openmp.patch ├── patches_submodules └── tensorpipe │ └── 0001-switch-away-from-find_package-CUDA.patch └── third_party └── CMake └── Copyright.txt /.ci_support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/README -------------------------------------------------------------------------------- /.ci_support/linux_64_blas_implgenericchannel_targetsconda-forge_maincuda_compiler_version12.9is_rcFalse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/linux_64_blas_implgenericchannel_targetsconda-forge_maincuda_compiler_version12.9is_rcFalse.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_blas_implgenericchannel_targetsconda-forge_maincuda_compiler_versionNoneis_rcFalse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/linux_64_blas_implgenericchannel_targetsconda-forge_maincuda_compiler_versionNoneis_rcFalse.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_blas_implmklchannel_targetsconda-forge_maincuda_compiler_version12.9is_rcFalse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/linux_64_blas_implmklchannel_targetsconda-forge_maincuda_compiler_version12.9is_rcFalse.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_blas_implmklchannel_targetsconda-forge_maincuda_compiler_versionNoneis_rcFalse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/linux_64_blas_implmklchannel_targetsconda-forge_maincuda_compiler_versionNoneis_rcFalse.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_channel_targetsconda-forge_maincuda_compiler_version12.9is_rcFalse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/linux_aarch64_channel_targetsconda-forge_maincuda_compiler_version12.9is_rcFalse.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_channel_targetsconda-forge_maincuda_compiler_versionNoneis_rcFalse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/linux_aarch64_channel_targetsconda-forge_maincuda_compiler_versionNoneis_rcFalse.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/absl_grpc_proto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/migrations/absl_grpc_proto.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/absl_grpc_proto_25Q2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/migrations/absl_grpc_proto_25Q2.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/cuda129.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/migrations/cuda129.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/fmt12_spdlog116.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/migrations/fmt12_spdlog116.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/mkl2025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/migrations/mkl2025.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/pybind11_abi11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/migrations/pybind11_abi11.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_blas_implgenericchannel_targetsconda-forge_mainis_rcFalse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/osx_64_blas_implgenericchannel_targetsconda-forge_mainis_rcFalse.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_blas_implmklchannel_targetsconda-forge_mainis_rcFalse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/osx_64_blas_implmklchannel_targetsconda-forge_mainis_rcFalse.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_channel_targetsconda-forge_mainis_rcFalse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/osx_arm64_channel_targetsconda-forge_mainis_rcFalse.yaml -------------------------------------------------------------------------------- /.ci_support/win_64_channel_targetsconda-forge_maincuda_compiler_version12.8is_rcFalse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/win_64_channel_targetsconda-forge_maincuda_compiler_version12.8is_rcFalse.yaml -------------------------------------------------------------------------------- /.ci_support/win_64_channel_targetsconda-forge_maincuda_compiler_versionNoneis_rcFalse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.ci_support/win_64_channel_targetsconda-forge_maincuda_compiler_versionNoneis_rcFalse.yaml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/conda-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.github/workflows/conda-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.gitignore -------------------------------------------------------------------------------- /.scripts/build_steps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.scripts/build_steps.sh -------------------------------------------------------------------------------- /.scripts/create_conda_build_artifacts.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.scripts/create_conda_build_artifacts.bat -------------------------------------------------------------------------------- /.scripts/create_conda_build_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.scripts/create_conda_build_artifacts.sh -------------------------------------------------------------------------------- /.scripts/download_osx_sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.scripts/download_osx_sdk.sh -------------------------------------------------------------------------------- /.scripts/logging_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.scripts/logging_utils.sh -------------------------------------------------------------------------------- /.scripts/run_docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.scripts/run_docker_build.sh -------------------------------------------------------------------------------- /.scripts/run_osx_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.scripts/run_osx_build.sh -------------------------------------------------------------------------------- /.scripts/run_win_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/.scripts/run_win_build.bat -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/README.md -------------------------------------------------------------------------------- /conda-forge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/conda-forge.yml -------------------------------------------------------------------------------- /recipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/README.md -------------------------------------------------------------------------------- /recipe/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/bld.bat -------------------------------------------------------------------------------- /recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/build.sh -------------------------------------------------------------------------------- /recipe/cmake_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/cmake_test/CMakeLists.txt -------------------------------------------------------------------------------- /recipe/cmake_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/cmake_test/main.cpp -------------------------------------------------------------------------------- /recipe/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/conda_build_config.yaml -------------------------------------------------------------------------------- /recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/meta.yaml -------------------------------------------------------------------------------- /recipe/patches/0001-Force-usage-of-python-3-and-error-without-numpy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0001-Force-usage-of-python-3-and-error-without-numpy.patch -------------------------------------------------------------------------------- /recipe/patches/0002-Fix-duplicate-linker-script.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0002-Fix-duplicate-linker-script.patch -------------------------------------------------------------------------------- /recipe/patches/0003-Allow-overriding-CUDA-related-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0003-Allow-overriding-CUDA-related-paths.patch -------------------------------------------------------------------------------- /recipe/patches/0004-Use-BLAS_USE_CBLAS_DOT-for-OpenBLAS-builds.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0004-Use-BLAS_USE_CBLAS_DOT-for-OpenBLAS-builds.patch -------------------------------------------------------------------------------- /recipe/patches/0005-Fix-FindOpenBLAS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0005-Fix-FindOpenBLAS.patch -------------------------------------------------------------------------------- /recipe/patches/0006-point-include-paths-to-Conda-prefix-include-dir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0006-point-include-paths-to-Conda-prefix-include-dir.patch -------------------------------------------------------------------------------- /recipe/patches/0007-Add-conda-prefix-to-inductor-include-lib-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0007-Add-conda-prefix-to-inductor-include-lib-paths.patch -------------------------------------------------------------------------------- /recipe/patches/0008-make-ATEN_INCLUDE_DIR-relative-to-TORCH_INSTALL_PREF.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0008-make-ATEN_INCLUDE_DIR-relative-to-TORCH_INSTALL_PREF.patch -------------------------------------------------------------------------------- /recipe/patches/0009-remove-DESTINATION-lib-from-CMake-install-TARGETS-di.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0009-remove-DESTINATION-lib-from-CMake-install-TARGETS-di.patch -------------------------------------------------------------------------------- /recipe/patches/0010-avoid-deprecated-find_package-CUDA-in-caffe2-CMake-m.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0010-avoid-deprecated-find_package-CUDA-in-caffe2-CMake-m.patch -------------------------------------------------------------------------------- /recipe/patches/0011-Fix-CUPTI-lookup-to-include-target-directory.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0011-Fix-CUPTI-lookup-to-include-target-directory.patch -------------------------------------------------------------------------------- /recipe/patches/0012-skip-test_norm_matrix_degenerate_shapes-on-numpy-2.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0012-skip-test_norm_matrix_degenerate_shapes-on-numpy-2.3.patch -------------------------------------------------------------------------------- /recipe/patches/0013-Define-PY_SSIZE_T_CLEAN-before-include-Python.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0013-Define-PY_SSIZE_T_CLEAN-before-include-Python.h.patch -------------------------------------------------------------------------------- /recipe/patches/0014-Add-USE_SYSTEM-options-for-KLEIDI-CUDNN_FRONTEND-CUT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0014-Add-USE_SYSTEM-options-for-KLEIDI-CUDNN_FRONTEND-CUT.patch -------------------------------------------------------------------------------- /recipe/patches/0015-Fix-building-kineto-against-system-fmt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0015-Fix-building-kineto-against-system-fmt.patch -------------------------------------------------------------------------------- /recipe/patches/0016-Attempt-to-fix-torch.backends.cudnn.rnn-import.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0016-Attempt-to-fix-torch.backends.cudnn.rnn-import.patch -------------------------------------------------------------------------------- /recipe/patches/0018-Use-Intel-LLVM-openmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches/0018-Use-Intel-LLVM-openmp.patch -------------------------------------------------------------------------------- /recipe/patches_submodules/tensorpipe/0001-switch-away-from-find_package-CUDA.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/patches_submodules/tensorpipe/0001-switch-away-from-find_package-CUDA.patch -------------------------------------------------------------------------------- /recipe/third_party/CMake/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/pytorch-cpu-feedstock/HEAD/recipe/third_party/CMake/Copyright.txt --------------------------------------------------------------------------------