From ae1433e940e7322798a0bfd75fae5dfd75155a48 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Wed, 25 Oct 2023 13:44:54 +0200 Subject: [PATCH 01/38] First try at 2.1.0 --- recipe/build_pytorch.sh | 50 ++++++++++++++++++++--------------------- recipe/meta.yaml | 40 +++++++++++++++++---------------- 2 files changed, 46 insertions(+), 44 deletions(-) diff --git a/recipe/build_pytorch.sh b/recipe/build_pytorch.sh index c07e4c957..ed5c4ee79 100644 --- a/recipe/build_pytorch.sh +++ b/recipe/build_pytorch.sh @@ -10,20 +10,20 @@ rm -rf pyproject.toml # uncomment to debug cmake build # export CMAKE_VERBOSE_MAKEFILE=1 -export USE_NUMA=0 -export USE_ITT=0 -export CFLAGS="$(echo $CFLAGS | sed 's/-fvisibility-inlines-hidden//g')" -export CXXFLAGS="$(echo $CXXFLAGS | sed 's/-fvisibility-inlines-hidden//g')" -export LDFLAGS="$(echo $LDFLAGS | sed 's/-Wl,--as-needed//g')" -export LDFLAGS="$(echo $LDFLAGS | sed 's/-Wl,-dead_strip_dylibs//g')" -export LDFLAGS_LD="$(echo $LDFLAGS_LD | sed 's/-dead_strip_dylibs//g')" -if [[ "$c_compiler" == "clang" ]]; then - export CXXFLAGS="$CXXFLAGS -Wno-deprecated-declarations -Wno-unknown-warning-option -Wno-error=unused-command-line-argument" - export CFLAGS="$CFLAGS -Wno-deprecated-declarations -Wno-unknown-warning-option -Wno-error=unused-command-line-argument" -else - export CXXFLAGS="$CXXFLAGS -Wno-deprecated-declarations -Wno-error=maybe-uninitialized" - export CFLAGS="$CFLAGS -Wno-deprecated-declarations -Wno-error=maybe-uninitialized" -fi +# export USE_NUMA=0 +# export USE_ITT=0 +# export CFLAGS="$(echo $CFLAGS | sed 's/-fvisibility-inlines-hidden//g')" +# export CXXFLAGS="$(echo $CXXFLAGS | sed 's/-fvisibility-inlines-hidden//g')" +# export LDFLAGS="$(echo $LDFLAGS | sed 's/-Wl,--as-needed//g')" +# export LDFLAGS="$(echo $LDFLAGS | sed 's/-Wl,-dead_strip_dylibs//g')" +# export LDFLAGS_LD="$(echo $LDFLAGS_LD | sed 's/-dead_strip_dylibs//g')" +# if [[ "$c_compiler" == "clang" ]]; then +# export CXXFLAGS="$CXXFLAGS -Wno-deprecated-declarations -Wno-unknown-warning-option -Wno-error=unused-command-line-argument" +# export CFLAGS="$CFLAGS -Wno-deprecated-declarations -Wno-unknown-warning-option -Wno-error=unused-command-line-argument" +# else +# export CXXFLAGS="$CXXFLAGS -Wno-deprecated-declarations -Wno-error=maybe-uninitialized" +# export CFLAGS="$CFLAGS -Wno-deprecated-declarations -Wno-error=maybe-uninitialized" +# fi # This is not correctly found for linux-aarch64 since pytorch 2.0.0 for some reason export _GLIBCXX_USE_CXX11_ABI=1 @@ -32,7 +32,7 @@ export _GLIBCXX_USE_CXX11_ABI=1 # CUPTI seems to cause trouble when users install a version of # cudatoolkit different than the one specified at compile time. # https://github.com/conda-forge/pytorch-cpu-feedstock/issues/135 -export USE_KINETO=OFF +# export USE_KINETO=OFF if [[ "$target_platform" == "osx-64" ]]; then export CXXFLAGS="$CXXFLAGS -DTARGET_OS_OSX=1" @@ -56,11 +56,11 @@ for ARG in $CMAKE_ARGS; do fi done unset CMAKE_INSTALL_PREFIX -export TH_BINARY_BUILD=1 +# export TH_BINARY_BUILD=1 export PYTORCH_BUILD_VERSION=$PKG_VERSION export PYTORCH_BUILD_NUMBER=$PKG_BUILDNUM -export USE_NINJA=OFF +#export USE_NINJA=OFF export INSTALL_TEST=0 export BUILD_TEST=0 @@ -125,7 +125,7 @@ if [[ ${cuda_compiler_version} != "None" ]]; then # Even though cudnn is used for CUDA builds, it's good to enable # for MKLDNN for CUDA builds when CUDA builds are used on a machine # with no NVIDIA GPUs. However compilation fails with mkldnn and cuda enabled. - export USE_MKLDNN=OFF + # export USE_MKLDNN=OFF export USE_CUDA=1 if [[ ${cuda_compiler_version} == 9.0* ]]; then export TORCH_CUDA_ARCH_LIST="3.5;5.0;6.0;7.0+PTX" @@ -144,11 +144,11 @@ if [[ ${cuda_compiler_version} != "None" ]]; then exit 1 fi export TORCH_NVCC_FLAGS="-Xfatbin -compress-all" - export NCCL_ROOT_DIR=$PREFIX - export NCCL_INCLUDE_DIR=$PREFIX/include - export USE_SYSTEM_NCCL=1 - export USE_STATIC_NCCL=0 - export USE_STATIC_CUDNN=0 + # export NCCL_ROOT_DIR=$PREFIX + # export NCCL_INCLUDE_DIR=$PREFIX/include + # export USE_SYSTEM_NCCL=1 + # export USE_STATIC_NCCL=0 + # export USE_STATIC_CUDNN=0 export CUDA_TOOLKIT_ROOT_DIR=$CUDA_HOME export MAGMA_HOME="${PREFIX}" else @@ -159,7 +159,7 @@ else fi # MKLDNN is an Apache-2.0 licensed library for DNNs and is used # for CPU builds. Not to be confused with MKL. - export USE_MKLDNN=1 + # export USE_MKLDNN=1 export USE_CUDA=0 export CMAKE_TOOLCHAIN_FILE="${RECIPE_DIR}/cross-linux.cmake" fi @@ -167,7 +167,7 @@ fi export CMAKE_BUILD_TYPE=Release echo '${CXX}'=${CXX} -echo '${PREFIX}'=${PREFIX} +echo '${PREFIX}'=${REFIX} $PYTHON -m pip install . --no-deps -vvv --no-clean \ | sed "s,${CXX},\$\{CXX\},g" \ | sed "s,${PREFIX},\$\{PREFIX\},g" diff --git a/recipe/meta.yaml b/recipe/meta.yaml index f4d848947..8bad01fcd 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,5 +1,5 @@ -{% set version = "2.0.0" %} -{% set build_number = 3 %} +{% set version = "2.1.0" %} +{% set build_number = 0 %} {% if cuda_compiler_version != "None" %} {% set build_number = build_number + 200 %} @@ -17,12 +17,6 @@ source: # for local testing use a tarball including submodules git_url: https://github.com/pytorch/pytorch.git git_tag: v{{ version }} - patches: - - patches/fix_dispatch_apply_auto.patch - # 2022/07 hmaarrfk - # We've patch out the bug in GCC that makes it incompatible - # https://github.com/conda-forge/ctng-compilers-feedstock/blob/7ea10c2526445beb9faff23efcc6bc40fc0079b5/recipe/meta.yaml#L23= - - patches/remove_gcc_maximum_requirements.patch build: number: {{ build_number }} @@ -75,22 +69,30 @@ outputs: - numpy - pip - setuptools - - pyyaml - - requests - - future - - six - - mkl-devel {{ mkl }} # [blas_impl == "mkl"] - - libcblas * *_mkl # [blas_impl == "mkl"] + - astunparse + - expecttest + - hypothesis + - numpy + - psutil + - pyyaml + - requests + - setuptools + - types-dataclasses + - sympy + - filelock + - networkx + - jinja2 + - fsspec + - packaging + - optree + - mkl {{ mkl }} # [blas_impl == "mkl"] + - mkl-include # [blas_impl == "mkl"] - libcblas # [blas_impl != "mkl"] - liblapack # [blas_impl != "mkl"] - - libgomp # [linux] - - llvm-openmp # [osx] + - magma # [linux] - libprotobuf - - sleef - - typing - libuv - pkg-config # [unix] - - typing_extensions run: - llvm-openmp # [osx] # GPU requirements without run_exports From 7bdfddbf36247954eb723fd8f045d4afc02ffbf9 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Wed, 25 Oct 2023 13:47:30 +0200 Subject: [PATCH 02/38] Add triton --- recipe/build_pytorch.sh | 1 + recipe/meta.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/recipe/build_pytorch.sh b/recipe/build_pytorch.sh index ed5c4ee79..0a4a23e03 100644 --- a/recipe/build_pytorch.sh +++ b/recipe/build_pytorch.sh @@ -151,6 +151,7 @@ if [[ ${cuda_compiler_version} != "None" ]]; then # export USE_STATIC_CUDNN=0 export CUDA_TOOLKIT_ROOT_DIR=$CUDA_HOME export MAGMA_HOME="${PREFIX}" + make triton else if [[ "$target_platform" != *-64 ]]; then # Breakpad seems to not work on aarch64 or ppc64le diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 8bad01fcd..6fd74603a 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -89,7 +89,7 @@ outputs: - mkl-include # [blas_impl == "mkl"] - libcblas # [blas_impl != "mkl"] - liblapack # [blas_impl != "mkl"] - - magma # [linux] + - triton # [linux] - libprotobuf - libuv - pkg-config # [unix] From 8bb13fe39ef16f3cd348f5cefe2219e2b9b4d1a3 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Wed, 25 Oct 2023 13:52:57 +0200 Subject: [PATCH 03/38] Fix tabs --- recipe/meta.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 6fd74603a..8253727a8 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -69,20 +69,20 @@ outputs: - numpy - pip - setuptools - - astunparse - - expecttest - - hypothesis - - numpy - - psutil - - pyyaml - - requests - - setuptools - - types-dataclasses - - sympy - - filelock - - networkx - - jinja2 - - fsspec + - astunparse + - expecttest + - hypothesis + - numpy + - psutil + - pyyaml + - requests + - setuptools + - types-dataclasses + - sympy + - filelock + - networkx + - jinja2 + - fsspec - packaging - optree - mkl {{ mkl }} # [blas_impl == "mkl"] From 363600b6224b4b77ec1b8c19f26000d55d68fc64 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Wed, 25 Oct 2023 14:21:16 +0200 Subject: [PATCH 04/38] Add cuda libraries --- recipe/meta.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 8253727a8..b7222bef2 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -45,6 +45,9 @@ outputs: - {{ compiler('c') }} - {{ compiler('cxx') }} - {{ compiler('cuda') }} # [cuda_compiler_version != "None"] + - cudatoolkit # [cuda_compiler_version < 12] + - cuda-libraries-dev # [cuda_compiler_version >= 12] + - cuda-cudart-dev # [cuda_compiler_version >= 12] # Dec 2020: it seems that git is broken on windows, so we use m2-git - patch # [not win] - m2-patch # [win] From 1fe99371eec26a4afa7ebebb2b9e87a27d7c7af2 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Wed, 25 Oct 2023 14:22:11 +0200 Subject: [PATCH 05/38] lint --- recipe/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index b7222bef2..b7368ad97 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -46,8 +46,8 @@ outputs: - {{ compiler('cxx') }} - {{ compiler('cuda') }} # [cuda_compiler_version != "None"] - cudatoolkit # [cuda_compiler_version < 12] - - cuda-libraries-dev # [cuda_compiler_version >= 12] - - cuda-cudart-dev # [cuda_compiler_version >= 12] + - cuda-libraries-dev # [cuda_compiler_version >= 12] + - cuda-cudart-dev # [cuda_compiler_version >= 12] # Dec 2020: it seems that git is broken on windows, so we use m2-git - patch # [not win] - m2-patch # [win] From 21f6144efa0060f69aca09f7853423a4a82949cd Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Wed, 25 Oct 2023 16:01:32 +0200 Subject: [PATCH 06/38] Remove triton --- recipe/build_pytorch.sh | 1 - recipe/meta.yaml | 1 - 2 files changed, 2 deletions(-) diff --git a/recipe/build_pytorch.sh b/recipe/build_pytorch.sh index 0a4a23e03..ed5c4ee79 100644 --- a/recipe/build_pytorch.sh +++ b/recipe/build_pytorch.sh @@ -151,7 +151,6 @@ if [[ ${cuda_compiler_version} != "None" ]]; then # export USE_STATIC_CUDNN=0 export CUDA_TOOLKIT_ROOT_DIR=$CUDA_HOME export MAGMA_HOME="${PREFIX}" - make triton else if [[ "$target_platform" != *-64 ]]; then # Breakpad seems to not work on aarch64 or ppc64le diff --git a/recipe/meta.yaml b/recipe/meta.yaml index b7368ad97..8250b574d 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -92,7 +92,6 @@ outputs: - mkl-include # [blas_impl == "mkl"] - libcblas # [blas_impl != "mkl"] - liblapack # [blas_impl != "mkl"] - - triton # [linux] - libprotobuf - libuv - pkg-config # [unix] From 4e82516f9df4fa439217d2d3755b0ed801d573a2 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Wed, 25 Oct 2023 16:01:37 +0200 Subject: [PATCH 07/38] Add cuda dev --- recipe/meta.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 8250b574d..b0e6fba4d 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -45,9 +45,7 @@ outputs: - {{ compiler('c') }} - {{ compiler('cxx') }} - {{ compiler('cuda') }} # [cuda_compiler_version != "None"] - - cudatoolkit # [cuda_compiler_version < 12] - - cuda-libraries-dev # [cuda_compiler_version >= 12] - - cuda-cudart-dev # [cuda_compiler_version >= 12] + - cuda-libraries-dev # [cuda_compiler_version != "None"] # Dec 2020: it seems that git is broken on windows, so we use m2-git - patch # [not win] - m2-patch # [win] From 9b551ce8f847984c885bff9107722dc4a8174d6a Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Wed, 25 Oct 2023 18:00:19 +0200 Subject: [PATCH 08/38] Install cuda-libraries-dev only for cuda 12 --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index b0e6fba4d..26fde71e9 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -45,7 +45,7 @@ outputs: - {{ compiler('c') }} - {{ compiler('cxx') }} - {{ compiler('cuda') }} # [cuda_compiler_version != "None"] - - cuda-libraries-dev # [cuda_compiler_version != "None"] + - cuda-libraries-dev # [cuda_compiler_version != "None" and cuda_compiler_version.split(".")[0] >=12] # Dec 2020: it seems that git is broken on windows, so we use m2-git - patch # [not win] - m2-patch # [win] From e702ad3d597fe71db1110eaf50100438b80344b2 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Wed, 25 Oct 2023 18:27:19 +0200 Subject: [PATCH 09/38] Add sleef --- recipe/meta.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 26fde71e9..9d20eba99 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -59,6 +59,7 @@ outputs: # of protobuf is installed between build and host - libprotobuf - protobuf + - sleef - make # [linux] host: # GPU requirements From 0c9a15c98ec5cbecb72b6b725f6f8e15fd566ada Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Thu, 26 Oct 2023 08:55:20 +0200 Subject: [PATCH 10/38] Remove sleef --- recipe/meta.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 9d20eba99..26fde71e9 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -59,7 +59,6 @@ outputs: # of protobuf is installed between build and host - libprotobuf - protobuf - - sleef - make # [linux] host: # GPU requirements From 8b000fb8960c1bd43290e7fbe955d2697bbaa59f Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Thu, 26 Oct 2023 09:01:41 +0200 Subject: [PATCH 11/38] Use sleef that comes with torch --- recipe/build_pytorch.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/recipe/build_pytorch.sh b/recipe/build_pytorch.sh index ed5c4ee79..fddf1522b 100644 --- a/recipe/build_pytorch.sh +++ b/recipe/build_pytorch.sh @@ -60,11 +60,10 @@ unset CMAKE_INSTALL_PREFIX export PYTORCH_BUILD_VERSION=$PKG_VERSION export PYTORCH_BUILD_NUMBER=$PKG_BUILDNUM -#export USE_NINJA=OFF export INSTALL_TEST=0 export BUILD_TEST=0 -export USE_SYSTEM_SLEEF=1 +export USE_SYSTEM_SLEEF=0 # use our protobuf export BUILD_CUSTOM_PROTOBUF=OFF rm -rf $PREFIX/bin/protoc From bc6d7ae26a3285a073a8ba6c49ea6dc358e3885d Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Fri, 27 Oct 2023 10:00:13 +0200 Subject: [PATCH 12/38] Set NUMA and ITT off --- recipe/build_pytorch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/build_pytorch.sh b/recipe/build_pytorch.sh index fddf1522b..d3cb0d17e 100644 --- a/recipe/build_pytorch.sh +++ b/recipe/build_pytorch.sh @@ -10,8 +10,8 @@ rm -rf pyproject.toml # uncomment to debug cmake build # export CMAKE_VERBOSE_MAKEFILE=1 -# export USE_NUMA=0 -# export USE_ITT=0 +export USE_NUMA=0 +export USE_ITT=0 # export CFLAGS="$(echo $CFLAGS | sed 's/-fvisibility-inlines-hidden//g')" # export CXXFLAGS="$(echo $CXXFLAGS | sed 's/-fvisibility-inlines-hidden//g')" # export LDFLAGS="$(echo $LDFLAGS | sed 's/-Wl,--as-needed//g')" From 096d426cd0982e44d473b135c1b03c827a65cb8c Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Fri, 27 Oct 2023 10:55:59 +0200 Subject: [PATCH 13/38] Add system sleef again --- recipe/build_pytorch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/build_pytorch.sh b/recipe/build_pytorch.sh index d3cb0d17e..041e276e3 100644 --- a/recipe/build_pytorch.sh +++ b/recipe/build_pytorch.sh @@ -63,7 +63,7 @@ export PYTORCH_BUILD_NUMBER=$PKG_BUILDNUM export INSTALL_TEST=0 export BUILD_TEST=0 -export USE_SYSTEM_SLEEF=0 +export USE_SYSTEM_SLEEF=1 # use our protobuf export BUILD_CUSTOM_PROTOBUF=OFF rm -rf $PREFIX/bin/protoc From 00b900ac6fc4438e47b0a3af8121536940672b16 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Fri, 27 Oct 2023 10:56:07 +0200 Subject: [PATCH 14/38] sleef to build reqs --- recipe/meta.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 26fde71e9..e4adb3d19 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -60,6 +60,7 @@ outputs: - libprotobuf - protobuf - make # [linux] + - sleef host: # GPU requirements - cudnn # [cuda_compiler_version != "None"] From d58ab0019a3fbf262b60ffe4ced6c871793b81a5 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Fri, 27 Oct 2023 13:28:51 +0200 Subject: [PATCH 15/38] Move sleef to host deps --- recipe/build_pytorch.sh | 2 +- recipe/meta.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/build_pytorch.sh b/recipe/build_pytorch.sh index 041e276e3..145923205 100644 --- a/recipe/build_pytorch.sh +++ b/recipe/build_pytorch.sh @@ -63,7 +63,7 @@ export PYTORCH_BUILD_NUMBER=$PKG_BUILDNUM export INSTALL_TEST=0 export BUILD_TEST=0 -export USE_SYSTEM_SLEEF=1 +export USE_SYSTEM_SLEEF=ON # use our protobuf export BUILD_CUSTOM_PROTOBUF=OFF rm -rf $PREFIX/bin/protoc diff --git a/recipe/meta.yaml b/recipe/meta.yaml index e4adb3d19..cb47ededa 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -60,7 +60,6 @@ outputs: - libprotobuf - protobuf - make # [linux] - - sleef host: # GPU requirements - cudnn # [cuda_compiler_version != "None"] @@ -94,6 +93,7 @@ outputs: - libprotobuf - libuv - pkg-config # [unix] + - sleef run: - llvm-openmp # [osx] # GPU requirements without run_exports From f667b0caf4802ce5e3ae6e5aeda357f46f704271 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Fri, 27 Oct 2023 19:54:42 +0200 Subject: [PATCH 16/38] Add fsspec to run deps --- recipe/meta.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index cb47ededa..ecb3b12ea 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -107,6 +107,7 @@ outputs: - jinja2 - networkx - nomkl # [blas_impl != "mkl"] + - fsspec # avoid that people without GPUs needlessly download ~0.5-1GB - __cuda # [cuda_compiler_version != "None"] run_constrained: From 85f7c6f17d15446a56ca84525fe8128b9eedd750 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Sat, 28 Oct 2023 09:03:11 +0200 Subject: [PATCH 17/38] Point to correct nvml function via a define --- recipe/build_pytorch.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipe/build_pytorch.sh b/recipe/build_pytorch.sh index 145923205..752e85ccd 100644 --- a/recipe/build_pytorch.sh +++ b/recipe/build_pytorch.sh @@ -142,7 +142,8 @@ if [[ ${cuda_compiler_version} != "None" ]]; then echo "unsupported cuda version. edit build_pytorch.sh" exit 1 fi - export TORCH_NVCC_FLAGS="-Xfatbin -compress-all" + export TORCH_NVCC_FLAGS="-Xfatbin -compress-all -DnvmlProcessInfo_v1_t=nvmlProcessInfo" + export CXXFLAGS="$CXXFLAGS -DnvmlProcessInfo_v1_t=nvmlProcessInfo" # export NCCL_ROOT_DIR=$PREFIX # export NCCL_INCLUDE_DIR=$PREFIX/include # export USE_SYSTEM_NCCL=1 From 47d008afb351af16a62ce227a343ed48a1dcd560 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Sat, 28 Oct 2023 09:07:35 +0200 Subject: [PATCH 18/38] Fix typo --- recipe/build_pytorch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/build_pytorch.sh b/recipe/build_pytorch.sh index 752e85ccd..3d9607687 100644 --- a/recipe/build_pytorch.sh +++ b/recipe/build_pytorch.sh @@ -167,7 +167,7 @@ fi export CMAKE_BUILD_TYPE=Release echo '${CXX}'=${CXX} -echo '${PREFIX}'=${REFIX} +echo '${PREFIX}'=${PREFIX} $PYTHON -m pip install . --no-deps -vvv --no-clean \ | sed "s,${CXX},\$\{CXX\},g" \ | sed "s,${PREFIX},\$\{PREFIX\},g" From a2b872bb04672a5f1a07939e0db1a808df5bf1b5 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Sat, 28 Oct 2023 12:21:43 +0200 Subject: [PATCH 19/38] Patch CUDACachingAllocator to use correct NVML function name --- recipe/build_pytorch.sh | 4 ++-- recipe/meta.yaml | 2 ++ recipe/nvml.patch | 13 +++++++++++++ 3 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 recipe/nvml.patch diff --git a/recipe/build_pytorch.sh b/recipe/build_pytorch.sh index 3d9607687..7ff6c85d6 100644 --- a/recipe/build_pytorch.sh +++ b/recipe/build_pytorch.sh @@ -142,8 +142,8 @@ if [[ ${cuda_compiler_version} != "None" ]]; then echo "unsupported cuda version. edit build_pytorch.sh" exit 1 fi - export TORCH_NVCC_FLAGS="-Xfatbin -compress-all -DnvmlProcessInfo_v1_t=nvmlProcessInfo" - export CXXFLAGS="$CXXFLAGS -DnvmlProcessInfo_v1_t=nvmlProcessInfo" + export TORCH_NVCC_FLAGS="-Xfatbin -compress-all" + export CXXFLAGS="$CXXFLAGS" # export NCCL_ROOT_DIR=$PREFIX # export NCCL_INCLUDE_DIR=$PREFIX/include # export USE_SYSTEM_NCCL=1 diff --git a/recipe/meta.yaml b/recipe/meta.yaml index ecb3b12ea..e67fc864b 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -17,6 +17,8 @@ source: # for local testing use a tarball including submodules git_url: https://github.com/pytorch/pytorch.git git_tag: v{{ version }} + patches: + - nvml.patch # [cuda_compiler_version == "11.2"] build: number: {{ build_number }} diff --git a/recipe/nvml.patch b/recipe/nvml.patch new file mode 100644 index 000000000..4c90f0785 --- /dev/null +++ b/recipe/nvml.patch @@ -0,0 +1,13 @@ +diff --git a/c10/cuda/CUDACachingAllocator.cpp b/c10/cuda/CUDACachingAllocator.cpp +index 05941947ed..c8e0bafe0a 100644 +--- a/c10/cuda/CUDACachingAllocator.cpp ++++ b/c10/cuda/CUDACachingAllocator.cpp +@@ -1141,7 +1141,7 @@ static std::string reportProcessMemoryInfo(int device) { + DriverAPI::get()->nvmlDeviceGetHandleByPciBusId_v2_( + pci_id, &nvml_device)); + +- std::vector procs(8); ++ std::vector procs(8); + unsigned int size = procs.size(); + nvmlReturn_t r; + while ((r = DriverAPI::get()->nvmlDeviceGetComputeRunningProcesses_( From 3cf8d196cb05c27650a7f9cb38b61ecdb6e771b0 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Sat, 28 Oct 2023 12:22:48 +0200 Subject: [PATCH 20/38] Lint --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index e67fc864b..4a6b3d875 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -18,7 +18,7 @@ source: git_url: https://github.com/pytorch/pytorch.git git_tag: v{{ version }} patches: - - nvml.patch # [cuda_compiler_version == "11.2"] + - nvml.patch # [cuda_compiler_version == "11.2"] build: number: {{ build_number }} From b41a7a03ec339aa81bfd2cb01fe3d038881675c3 Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Sat, 28 Oct 2023 10:37:25 -0400 Subject: [PATCH 21/38] Add back mkl devel --- recipe/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 4a6b3d875..690d00b47 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -79,6 +79,8 @@ outputs: - psutil - pyyaml - requests + - mkl-devel {{ mkl }} # [blas_impl == "mkl"] + - libcblas * *_mkl # [blas_impl == "mkl"] - setuptools - types-dataclasses - sympy @@ -88,8 +90,6 @@ outputs: - fsspec - packaging - optree - - mkl {{ mkl }} # [blas_impl == "mkl"] - - mkl-include # [blas_impl == "mkl"] - libcblas # [blas_impl != "mkl"] - liblapack # [blas_impl != "mkl"] - libprotobuf From 282239a3dca5d1404b59977ca77260ee078641eb Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Sat, 28 Oct 2023 10:41:22 -0400 Subject: [PATCH 22/38] replace sleef in the exact position it was before --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 690d00b47..97faac97a 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -93,9 +93,9 @@ outputs: - libcblas # [blas_impl != "mkl"] - liblapack # [blas_impl != "mkl"] - libprotobuf + - sleef - libuv - pkg-config # [unix] - - sleef run: - llvm-openmp # [osx] # GPU requirements without run_exports From a538e3dca7c212a01b78b8bee697f6e800bb12ff Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Sat, 28 Oct 2023 14:45:16 +0000 Subject: [PATCH 23/38] MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.27.1, and conda-forge-pinning 2023.10.28.13.26.14 --- .azure-pipelines/azure-pipelines-linux.yml | 24 +++++++++---------- ...sion10numpy1.22python3.10.____cpython.yaml | 4 ---- ...rsion10numpy1.22python3.8.____cpython.yaml | 4 ---- ...rsion10numpy1.22python3.9.____cpython.yaml | 4 ---- ...sion10numpy1.23python3.11.____cpython.yaml | 4 ---- ...sion12numpy1.22python3.10.____cpython.yaml | 4 ---- ...rsion12numpy1.22python3.8.____cpython.yaml | 4 ---- ...rsion12numpy1.22python3.9.____cpython.yaml | 4 ---- ...sion12numpy1.23python3.11.____cpython.yaml | 4 ---- ...sion10numpy1.22python3.10.____cpython.yaml | 4 ---- ...rsion10numpy1.22python3.8.____cpython.yaml | 4 ---- ...rsion10numpy1.22python3.9.____cpython.yaml | 4 ---- ...sion10numpy1.23python3.11.____cpython.yaml | 4 ---- ...sion12numpy1.22python3.10.____cpython.yaml | 4 ---- ...rsion12numpy1.22python3.8.____cpython.yaml | 4 ---- ...rsion12numpy1.22python3.9.____cpython.yaml | 4 ---- ...sion12numpy1.23python3.11.____cpython.yaml | 4 ---- ...ion12numpy1.22python3.10.____cpython.yaml} | 6 +---- ...sion12numpy1.22python3.8.____cpython.yaml} | 6 +---- ...sion12numpy1.22python3.9.____cpython.yaml} | 6 +---- ...ion12numpy1.23python3.11.____cpython.yaml} | 6 +---- ...enericnumpy1.22python3.10.____cpython.yaml | 4 ---- ...genericnumpy1.22python3.8.____cpython.yaml | 4 ---- ...genericnumpy1.22python3.9.____cpython.yaml | 4 ---- ...enericnumpy1.23python3.11.____cpython.yaml | 4 ---- ...mplmklnumpy1.22python3.10.____cpython.yaml | 4 ---- ...implmklnumpy1.22python3.8.____cpython.yaml | 4 ---- ...implmklnumpy1.22python3.9.____cpython.yaml | 4 ---- ...mplmklnumpy1.23python3.11.____cpython.yaml | 4 ---- ...arm64_numpy1.22python3.10.____cpython.yaml | 4 ---- ..._arm64_numpy1.22python3.8.____cpython.yaml | 4 ---- ..._arm64_numpy1.22python3.9.____cpython.yaml | 4 ---- ...arm64_numpy1.23python3.11.____cpython.yaml | 4 ---- README.md | 16 ++++++------- 34 files changed, 24 insertions(+), 152 deletions(-) rename .ci_support/{linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml => linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml} (92%) rename .ci_support/{linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml => linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml} (92%) rename .ci_support/{linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml => linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml} (92%) rename .ci_support/{linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml => linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml} (92%) diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index 9bce49706..f6c049afb 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -88,26 +88,26 @@ jobs: UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 SHORT_CONFIG: linux_64_blas_implmklc_compiler_ver_hd68e529e8e - ? linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython + ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h47a7e314ee - ? linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython + SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h3b2db91ff0 + ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h5d6af67c78 - ? linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython + SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h7bee36981b + ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h01a1183a4e - ? linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython + SHORT_CONFIG: linux_aarch64_c_compiler_version12c_hce2477ef36 + ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h084332c5a8 + SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h75324d9f1f timeoutInMinutes: 360 steps: diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml index 103fd3ef3..9ff5bda36 100644 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml @@ -22,10 +22,6 @@ cxx_compiler_version: - '10' docker_image: - quay.io/condaforge/linux-anvil-cuda:11.2 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython.yaml index 9e5bb2448..8c646ab2d 100644 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython.yaml +++ b/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython.yaml @@ -22,10 +22,6 @@ cxx_compiler_version: - '10' docker_image: - quay.io/condaforge/linux-anvil-cuda:11.2 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython.yaml index 1153d6608..eeae84a1c 100644 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython.yaml +++ b/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython.yaml @@ -22,10 +22,6 @@ cxx_compiler_version: - '10' docker_image: - quay.io/condaforge/linux-anvil-cuda:11.2 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython.yaml index cfc6528b8..cfae733b5 100644 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython.yaml +++ b/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython.yaml @@ -22,10 +22,6 @@ cxx_compiler_version: - '10' docker_image: - quay.io/condaforge/linux-anvil-cuda:11.2 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml index 48fa685be..8a52ae1ab 100644 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml @@ -22,10 +22,6 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml index de5a489d6..df58d0881 100644 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml +++ b/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml @@ -22,10 +22,6 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml index 0384b2093..12137b2bb 100644 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml +++ b/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml @@ -22,10 +22,6 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml index 3bd37489e..1ab9b00e5 100644 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml +++ b/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml @@ -22,10 +22,6 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml index fb61ab6ef..d7e10e9ec 100644 --- a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml @@ -22,10 +22,6 @@ cxx_compiler_version: - '10' docker_image: - quay.io/condaforge/linux-anvil-cuda:11.2 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython.yaml index ad72706fc..6da0546d5 100644 --- a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython.yaml +++ b/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython.yaml @@ -22,10 +22,6 @@ cxx_compiler_version: - '10' docker_image: - quay.io/condaforge/linux-anvil-cuda:11.2 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython.yaml index 1b256eaf8..6b6bf1b2b 100644 --- a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython.yaml +++ b/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython.yaml @@ -22,10 +22,6 @@ cxx_compiler_version: - '10' docker_image: - quay.io/condaforge/linux-anvil-cuda:11.2 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython.yaml index cbc20e976..3707d7fe6 100644 --- a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython.yaml +++ b/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython.yaml @@ -22,10 +22,6 @@ cxx_compiler_version: - '10' docker_image: - quay.io/condaforge/linux-anvil-cuda:11.2 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml index a6efa1db9..2660d4021 100644 --- a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml @@ -22,10 +22,6 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml index c5b489ad3..1f37522af 100644 --- a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml +++ b/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml @@ -22,10 +22,6 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml index 66d88d62f..05a0f1235 100644 --- a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml +++ b/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml @@ -22,10 +22,6 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml index 36906cbcd..b9772bd4a 100644 --- a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml +++ b/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml @@ -22,10 +22,6 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml similarity index 92% rename from .ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml rename to .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml index 5b838fb3c..103c8522a 100644 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml @@ -15,7 +15,7 @@ channel_sources: channel_targets: - conda-forge main cuda_compiler: -- nvcc +- None cuda_compiler_version: - None cxx_compiler: @@ -24,10 +24,6 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml similarity index 92% rename from .ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml rename to .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml index d644dea4f..13292867f 100644 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml @@ -15,7 +15,7 @@ channel_sources: channel_targets: - conda-forge main cuda_compiler: -- nvcc +- None cuda_compiler_version: - None cxx_compiler: @@ -24,10 +24,6 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml similarity index 92% rename from .ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml rename to .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml index 57e1c44ba..7ade6e722 100644 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml @@ -15,7 +15,7 @@ channel_sources: channel_targets: - conda-forge main cuda_compiler: -- nvcc +- None cuda_compiler_version: - None cxx_compiler: @@ -24,10 +24,6 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml similarity index 92% rename from .ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml rename to .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml index 91711a25e..8db8d84a0 100644 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml @@ -15,7 +15,7 @@ channel_sources: channel_targets: - conda-forge main cuda_compiler: -- nvcc +- None cuda_compiler_version: - None cxx_compiler: @@ -24,10 +24,6 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 mkl: diff --git a/.ci_support/osx_64_blas_implgenericnumpy1.22python3.10.____cpython.yaml b/.ci_support/osx_64_blas_implgenericnumpy1.22python3.10.____cpython.yaml index 60e401646..550c8ddd6 100644 --- a/.ci_support/osx_64_blas_implgenericnumpy1.22python3.10.____cpython.yaml +++ b/.ci_support/osx_64_blas_implgenericnumpy1.22python3.10.____cpython.yaml @@ -20,10 +20,6 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: diff --git a/.ci_support/osx_64_blas_implgenericnumpy1.22python3.8.____cpython.yaml b/.ci_support/osx_64_blas_implgenericnumpy1.22python3.8.____cpython.yaml index e5db990d9..38c5d9301 100644 --- a/.ci_support/osx_64_blas_implgenericnumpy1.22python3.8.____cpython.yaml +++ b/.ci_support/osx_64_blas_implgenericnumpy1.22python3.8.____cpython.yaml @@ -20,10 +20,6 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: diff --git a/.ci_support/osx_64_blas_implgenericnumpy1.22python3.9.____cpython.yaml b/.ci_support/osx_64_blas_implgenericnumpy1.22python3.9.____cpython.yaml index c42c0ca51..c8ccf4813 100644 --- a/.ci_support/osx_64_blas_implgenericnumpy1.22python3.9.____cpython.yaml +++ b/.ci_support/osx_64_blas_implgenericnumpy1.22python3.9.____cpython.yaml @@ -20,10 +20,6 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: diff --git a/.ci_support/osx_64_blas_implgenericnumpy1.23python3.11.____cpython.yaml b/.ci_support/osx_64_blas_implgenericnumpy1.23python3.11.____cpython.yaml index ba5c42b14..24fbca19c 100644 --- a/.ci_support/osx_64_blas_implgenericnumpy1.23python3.11.____cpython.yaml +++ b/.ci_support/osx_64_blas_implgenericnumpy1.23python3.11.____cpython.yaml @@ -20,10 +20,6 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: diff --git a/.ci_support/osx_64_blas_implmklnumpy1.22python3.10.____cpython.yaml b/.ci_support/osx_64_blas_implmklnumpy1.22python3.10.____cpython.yaml index b12de8f08..3ed1c3849 100644 --- a/.ci_support/osx_64_blas_implmklnumpy1.22python3.10.____cpython.yaml +++ b/.ci_support/osx_64_blas_implmklnumpy1.22python3.10.____cpython.yaml @@ -20,10 +20,6 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: diff --git a/.ci_support/osx_64_blas_implmklnumpy1.22python3.8.____cpython.yaml b/.ci_support/osx_64_blas_implmklnumpy1.22python3.8.____cpython.yaml index a91acfad1..25c0f8dec 100644 --- a/.ci_support/osx_64_blas_implmklnumpy1.22python3.8.____cpython.yaml +++ b/.ci_support/osx_64_blas_implmklnumpy1.22python3.8.____cpython.yaml @@ -20,10 +20,6 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: diff --git a/.ci_support/osx_64_blas_implmklnumpy1.22python3.9.____cpython.yaml b/.ci_support/osx_64_blas_implmklnumpy1.22python3.9.____cpython.yaml index eff786eaf..24921dd1b 100644 --- a/.ci_support/osx_64_blas_implmklnumpy1.22python3.9.____cpython.yaml +++ b/.ci_support/osx_64_blas_implmklnumpy1.22python3.9.____cpython.yaml @@ -20,10 +20,6 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: diff --git a/.ci_support/osx_64_blas_implmklnumpy1.23python3.11.____cpython.yaml b/.ci_support/osx_64_blas_implmklnumpy1.23python3.11.____cpython.yaml index 07f0d1b56..34ca0dee8 100644 --- a/.ci_support/osx_64_blas_implmklnumpy1.23python3.11.____cpython.yaml +++ b/.ci_support/osx_64_blas_implmklnumpy1.23python3.11.____cpython.yaml @@ -20,10 +20,6 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: diff --git a/.ci_support/osx_arm64_numpy1.22python3.10.____cpython.yaml b/.ci_support/osx_arm64_numpy1.22python3.10.____cpython.yaml index 59589d9be..3979cdf43 100644 --- a/.ci_support/osx_arm64_numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/osx_arm64_numpy1.22python3.10.____cpython.yaml @@ -20,10 +20,6 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: diff --git a/.ci_support/osx_arm64_numpy1.22python3.8.____cpython.yaml b/.ci_support/osx_arm64_numpy1.22python3.8.____cpython.yaml index 167b5c0a3..fac504cbb 100644 --- a/.ci_support/osx_arm64_numpy1.22python3.8.____cpython.yaml +++ b/.ci_support/osx_arm64_numpy1.22python3.8.____cpython.yaml @@ -20,10 +20,6 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: diff --git a/.ci_support/osx_arm64_numpy1.22python3.9.____cpython.yaml b/.ci_support/osx_arm64_numpy1.22python3.9.____cpython.yaml index 334682ab3..e0b2e777c 100644 --- a/.ci_support/osx_arm64_numpy1.22python3.9.____cpython.yaml +++ b/.ci_support/osx_arm64_numpy1.22python3.9.____cpython.yaml @@ -20,10 +20,6 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: diff --git a/.ci_support/osx_arm64_numpy1.23python3.11.____cpython.yaml b/.ci_support/osx_arm64_numpy1.23python3.11.____cpython.yaml index 3584974ae..db329608d 100644 --- a/.ci_support/osx_arm64_numpy1.23python3.11.____cpython.yaml +++ b/.ci_support/osx_arm64_numpy1.23python3.11.____cpython.yaml @@ -20,10 +20,6 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' -libcblas: -- 3.9 *netlib -liblapack: -- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: diff --git a/README.md b/README.md index 8afb77ceb..facdd140f 100644 --- a/README.md +++ b/README.md @@ -139,31 +139,31 @@ Current build status - linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython + linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython - variant + variant - linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython + linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython - variant + variant - linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython + linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython - variant + variant - linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython + linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython - variant + variant From ea33efaa0e5ab400922a6237d3e8c40370d7e25f Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Sat, 28 Oct 2023 16:55:04 +0200 Subject: [PATCH 24/38] Move patch --- recipe/meta.yaml | 2 +- recipe/{ => patches}/nvml.patch | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename recipe/{ => patches}/nvml.patch (100%) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 97faac97a..52bb0769b 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -18,7 +18,7 @@ source: git_url: https://github.com/pytorch/pytorch.git git_tag: v{{ version }} patches: - - nvml.patch # [cuda_compiler_version == "11.2"] + - patches/nvml.patch # [cuda_compiler_version == "11.2"] build: number: {{ build_number }} diff --git a/recipe/nvml.patch b/recipe/patches/nvml.patch similarity index 100% rename from recipe/nvml.patch rename to recipe/patches/nvml.patch From 33426b94650fd3a0559bf577bb300d71d8b4a166 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Sat, 28 Oct 2023 16:55:33 +0200 Subject: [PATCH 25/38] Remove old patches --- recipe/patches/fix_dispatch_apply_auto.patch | 15 --------- .../remove_gcc_maximum_requirements.patch | 31 ------------------- 2 files changed, 46 deletions(-) delete mode 100644 recipe/patches/fix_dispatch_apply_auto.patch delete mode 100644 recipe/patches/remove_gcc_maximum_requirements.patch diff --git a/recipe/patches/fix_dispatch_apply_auto.patch b/recipe/patches/fix_dispatch_apply_auto.patch deleted file mode 100644 index 949f03103..000000000 --- a/recipe/patches/fix_dispatch_apply_auto.patch +++ /dev/null @@ -1,15 +0,0 @@ -Index: work/third_party/pthreadpool/src/gcd.c -=================================================================== ---- work.orig/third_party/pthreadpool/src/gcd.c -+++ work/third_party/pthreadpool/src/gcd.c -@@ -118,7 +118,9 @@ PTHREADPOOL_INTERNAL void pthreadpool_pa - /* The next subrange starts where the previous ended */ - range_start = range_end; - } -- -+ #ifndef DISPATCH_APPLY_AUTO -+ #define DISPATCH_APPLY_AUTO ((dispatch_queue_t _Nonnull)0) -+ #endif - dispatch_apply_f(threads_count.value, DISPATCH_APPLY_AUTO, threadpool, thread_main); - - /* Unprotect the global threadpool structures */ diff --git a/recipe/patches/remove_gcc_maximum_requirements.patch b/recipe/patches/remove_gcc_maximum_requirements.patch deleted file mode 100644 index 3f3651f50..000000000 --- a/recipe/patches/remove_gcc_maximum_requirements.patch +++ /dev/null @@ -1,31 +0,0 @@ -diff --git a/torch/utils/cpp_extension.py b/torch/utils/cpp_extension.py -index 11b233f27124e..aef5fd5793e3a 100644 ---- a/torch/utils/cpp_extension.py -+++ b/torch/utils/cpp_extension.py -@@ -50,25 +50,10 @@ - # Or from include/crt/host_config.h in the CUDA SDK - # The second value is the exclusive(!) upper bound, i.e. min <= version < max - CUDA_GCC_VERSIONS: VersionMap = { -- '11.0': (MINIMUM_GCC_VERSION, (10, 0)), -- '11.1': (MINIMUM_GCC_VERSION, (11, 0)), -- '11.2': (MINIMUM_GCC_VERSION, (11, 0)), -- '11.3': (MINIMUM_GCC_VERSION, (11, 0)), -- '11.4': ((6, 0, 0), (12, 0)), -- '11.5': ((6, 0, 0), (12, 0)), -- '11.6': ((6, 0, 0), (12, 0)), -- '11.7': ((6, 0, 0), (12, 0)), - } - - MINIMUM_CLANG_VERSION = (3, 3, 0) - CUDA_CLANG_VERSIONS: VersionMap = { -- '11.1': (MINIMUM_CLANG_VERSION, (11, 0)), -- '11.2': (MINIMUM_CLANG_VERSION, (12, 0)), -- '11.3': (MINIMUM_CLANG_VERSION, (12, 0)), -- '11.4': (MINIMUM_CLANG_VERSION, (13, 0)), -- '11.5': (MINIMUM_CLANG_VERSION, (13, 0)), -- '11.6': (MINIMUM_CLANG_VERSION, (14, 0)), -- '11.7': (MINIMUM_CLANG_VERSION, (14, 0)), - } - - __all__ = ["get_default_build_root", "check_compiler_ok_for_platform", "get_compiler_abi_compatibility_and_version", "BuildExtension", - From f30f71590ef428cedb0e6b3e127818aceb98e29a Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Sat, 28 Oct 2023 17:01:05 +0200 Subject: [PATCH 26/38] Undo changes to USE_MKLDNN --- recipe/build_pytorch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/build_pytorch.sh b/recipe/build_pytorch.sh index 7ff6c85d6..6fd49c3ee 100644 --- a/recipe/build_pytorch.sh +++ b/recipe/build_pytorch.sh @@ -124,7 +124,7 @@ if [[ ${cuda_compiler_version} != "None" ]]; then # Even though cudnn is used for CUDA builds, it's good to enable # for MKLDNN for CUDA builds when CUDA builds are used on a machine # with no NVIDIA GPUs. However compilation fails with mkldnn and cuda enabled. - # export USE_MKLDNN=OFF + export USE_MKLDNN=OFF export USE_CUDA=1 if [[ ${cuda_compiler_version} == 9.0* ]]; then export TORCH_CUDA_ARCH_LIST="3.5;5.0;6.0;7.0+PTX" @@ -159,7 +159,7 @@ else fi # MKLDNN is an Apache-2.0 licensed library for DNNs and is used # for CPU builds. Not to be confused with MKL. - # export USE_MKLDNN=1 + export USE_MKLDNN=1 export USE_CUDA=0 export CMAKE_TOOLCHAIN_FILE="${RECIPE_DIR}/cross-linux.cmake" fi From 46045e43ca9f4c90cc560041b4bc38dea4e2af54 Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Sat, 28 Oct 2023 11:36:29 -0400 Subject: [PATCH 27/38] add back ligomp --- recipe/meta.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 52bb0769b..f0175f9b6 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -92,6 +92,8 @@ outputs: - optree - libcblas # [blas_impl != "mkl"] - liblapack # [blas_impl != "mkl"] + - libgomp # [linux] + - llvm-openmp # [osx] - libprotobuf - sleef - libuv From 883f54bb19e7c79c6ecd30ee1e944dc480bdb85a Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Sat, 28 Oct 2023 15:39:06 +0000 Subject: [PATCH 28/38] MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.27.1, and conda-forge-pinning 2023.10.28.13.26.14 --- .azure-pipelines/azure-pipelines-linux.yml | 24 +++++++++---------- ...ion12numpy1.22python3.10.____cpython.yaml} | 2 +- ...sion12numpy1.22python3.8.____cpython.yaml} | 2 +- ...sion12numpy1.22python3.9.____cpython.yaml} | 2 +- ...ion12numpy1.23python3.11.____cpython.yaml} | 2 +- README.md | 16 ++++++------- 6 files changed, 24 insertions(+), 24 deletions(-) rename .ci_support/{linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml => linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml} (99%) rename .ci_support/{linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml => linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml} (99%) rename .ci_support/{linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml => linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml} (99%) rename .ci_support/{linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml => linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml} (99%) diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index f6c049afb..9bce49706 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -88,26 +88,26 @@ jobs: UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 SHORT_CONFIG: linux_64_blas_implmklc_compiler_ver_hd68e529e8e - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython + ? linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h3b2db91ff0 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython + SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h47a7e314ee + ? linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h7bee36981b - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython + SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h5d6af67c78 + ? linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_aarch64_c_compiler_version12c_hce2477ef36 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython + SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h01a1183a4e + ? linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h75324d9f1f + SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h084332c5a8 timeoutInMinutes: 360 steps: diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml similarity index 99% rename from .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml rename to .ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml index 103c8522a..d0770dc35 100644 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml @@ -15,7 +15,7 @@ channel_sources: channel_targets: - conda-forge main cuda_compiler: -- None +- nvcc cuda_compiler_version: - None cxx_compiler: diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml similarity index 99% rename from .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml rename to .ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml index 13292867f..ce63e9e8e 100644 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml @@ -15,7 +15,7 @@ channel_sources: channel_targets: - conda-forge main cuda_compiler: -- None +- nvcc cuda_compiler_version: - None cxx_compiler: diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml similarity index 99% rename from .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml rename to .ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml index 7ade6e722..3a7352562 100644 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml @@ -15,7 +15,7 @@ channel_sources: channel_targets: - conda-forge main cuda_compiler: -- None +- nvcc cuda_compiler_version: - None cxx_compiler: diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml similarity index 99% rename from .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml rename to .ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml index 8db8d84a0..3ee724544 100644 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml @@ -15,7 +15,7 @@ channel_sources: channel_targets: - conda-forge main cuda_compiler: -- None +- nvcc cuda_compiler_version: - None cxx_compiler: diff --git a/README.md b/README.md index facdd140f..8afb77ceb 100644 --- a/README.md +++ b/README.md @@ -139,31 +139,31 @@ Current build status - linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython + linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython - variant + variant - linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython + linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython - variant + variant - linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython + linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython - variant + variant - linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython + linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython - variant + variant From 000e58bddee128a97d7e5416e0e03caba3be67e7 Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Sat, 28 Oct 2023 12:21:24 -0400 Subject: [PATCH 29/38] Try to make rerender faster during debugging --- recipe/meta.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index f0175f9b6..2e9f58514 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -27,6 +27,13 @@ build: skip: true # [cuda_compiler_version == "10.2"] skip: true # [cuda_compiler_version == "11.0"] skip: true # [cuda_compiler_version == "11.1"] + skip: true # [py != 310] + +requirements: + host: + - python + run: + - python outputs: - name: pytorch @@ -36,6 +43,7 @@ outputs: detect_binary_files_with_prefix: false run_exports: - {{ pin_subpackage('pytorch', max_pin='x.x') }} + skip: true # [py != 310] script: build_pytorch.sh # [not win] script: bld_pytorch.bat # [win] requirements: @@ -169,8 +177,15 @@ outputs: # weigh down cpu implementation and give cuda preference track_features: - pytorch-cpu # [cuda_compiler_version == "None"] + skip: true # [py != 310] requirements: + build: + - python # [build_platform != target_platform] + - cross-python_{{ target_platform }} # [build_platform != target_platform] + host: + - python run: + - python - {{ pin_subpackage("pytorch", exact=True) }} test: imports: From b3773baf0e363914f9f51c49fc488d0f18ad6d3e Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Sat, 28 Oct 2023 12:21:21 -0400 Subject: [PATCH 30/38] MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.27.1, and conda-forge-pinning 2023.10.28.13.26.14 --- .azure-pipelines/azure-pipelines-linux.yml | 75 -------- .azure-pipelines/azure-pipelines-osx.yml | 36 ---- ...rsion10numpy1.22python3.8.____cpython.yaml | 51 ------ ...rsion10numpy1.22python3.9.____cpython.yaml | 51 ------ ...sion10numpy1.23python3.11.____cpython.yaml | 51 ------ ...rsion12numpy1.22python3.8.____cpython.yaml | 51 ------ ...rsion12numpy1.22python3.9.____cpython.yaml | 51 ------ ...sion12numpy1.23python3.11.____cpython.yaml | 51 ------ ...rsion10numpy1.22python3.8.____cpython.yaml | 51 ------ ...rsion10numpy1.22python3.9.____cpython.yaml | 51 ------ ...sion10numpy1.23python3.11.____cpython.yaml | 51 ------ ...rsion12numpy1.22python3.8.____cpython.yaml | 51 ------ ...rsion12numpy1.22python3.9.____cpython.yaml | 51 ------ ...sion12numpy1.23python3.11.____cpython.yaml | 51 ------ ...rsion12numpy1.22python3.8.____cpython.yaml | 51 ------ ...rsion12numpy1.22python3.9.____cpython.yaml | 51 ------ ...sion12numpy1.23python3.11.____cpython.yaml | 51 ------ ...genericnumpy1.22python3.8.____cpython.yaml | 47 ----- ...genericnumpy1.22python3.9.____cpython.yaml | 47 ----- ...enericnumpy1.23python3.11.____cpython.yaml | 47 ----- ...implmklnumpy1.22python3.8.____cpython.yaml | 47 ----- ...implmklnumpy1.22python3.9.____cpython.yaml | 47 ----- ...mplmklnumpy1.23python3.11.____cpython.yaml | 47 ----- ..._arm64_numpy1.22python3.8.____cpython.yaml | 47 ----- ..._arm64_numpy1.22python3.9.____cpython.yaml | 47 ----- ...arm64_numpy1.23python3.11.____cpython.yaml | 47 ----- README.md | 168 ------------------ 27 files changed, 1467 deletions(-) delete mode 100644 .ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython.yaml delete mode 100644 .ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython.yaml delete mode 100644 .ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml delete mode 100644 .ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml delete mode 100644 .ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython.yaml delete mode 100644 .ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython.yaml delete mode 100644 .ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml delete mode 100644 .ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml delete mode 100644 .ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/osx_64_blas_implgenericnumpy1.22python3.8.____cpython.yaml delete mode 100644 .ci_support/osx_64_blas_implgenericnumpy1.22python3.9.____cpython.yaml delete mode 100644 .ci_support/osx_64_blas_implgenericnumpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/osx_64_blas_implmklnumpy1.22python3.8.____cpython.yaml delete mode 100644 .ci_support/osx_64_blas_implmklnumpy1.22python3.9.____cpython.yaml delete mode 100644 .ci_support/osx_64_blas_implmklnumpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.22python3.8.____cpython.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.22python3.9.____cpython.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.23python3.11.____cpython.yaml diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index 9bce49706..429d9d6b1 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -13,101 +13,26 @@ jobs: UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 SHORT_CONFIG: linux_64_blas_implgenericc_compiler_h369c9bc764 - ? linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython - : CONFIG: linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - SHORT_CONFIG: linux_64_blas_implgenericc_compiler_h8bebf75c3d - ? linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython - : CONFIG: linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - SHORT_CONFIG: linux_64_blas_implgenericc_compiler_h32f9b89ffb - ? linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython - : CONFIG: linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - SHORT_CONFIG: linux_64_blas_implgenericc_compiler_h1f70872050 ? linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython : CONFIG: linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 SHORT_CONFIG: linux_64_blas_implgenericc_compiler_h9a51817457 - ? linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython - : CONFIG: linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_64_blas_implgenericc_compiler_h129494d936 - ? linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython - : CONFIG: linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_64_blas_implgenericc_compiler_h682cdb96bf - ? linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython - : CONFIG: linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_64_blas_implgenericc_compiler_h92f6bde38f ? linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython : CONFIG: linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 SHORT_CONFIG: linux_64_blas_implmklc_compiler_ver_h414d6bfcc8 - ? linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython - : CONFIG: linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - SHORT_CONFIG: linux_64_blas_implmklc_compiler_ver_ha80de63896 - ? linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython - : CONFIG: linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - SHORT_CONFIG: linux_64_blas_implmklc_compiler_ver_hc78e3c725e - ? linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython - : CONFIG: linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - SHORT_CONFIG: linux_64_blas_implmklc_compiler_ver_ha1a15649c4 ? linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython : CONFIG: linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 SHORT_CONFIG: linux_64_blas_implmklc_compiler_ver_hfe9342d6a9 - ? linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython - : CONFIG: linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_64_blas_implmklc_compiler_ver_hfbf5e916bb - ? linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython - : CONFIG: linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_64_blas_implmklc_compiler_ver_h0d24706536 - ? linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython - : CONFIG: linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_64_blas_implmklc_compiler_ver_hd68e529e8e ? linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython : CONFIG: linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h47a7e314ee - ? linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h5d6af67c78 - ? linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h01a1183a4e - ? linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h084332c5a8 timeoutInMinutes: 360 steps: diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml index 8388a5253..d4527b27f 100755 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -12,50 +12,14 @@ jobs: CONFIG: osx_64_blas_implgenericnumpy1.22python3.10.____cpython UPLOAD_PACKAGES: 'True' SHORT_CONFIG: osx_64_blas_implgenericnumpy1.22pyt_h6f6e25bc95 - osx_64_blas_implgenericnumpy1.22python3.8.____cpython: - CONFIG: osx_64_blas_implgenericnumpy1.22python3.8.____cpython - UPLOAD_PACKAGES: 'True' - SHORT_CONFIG: osx_64_blas_implgenericnumpy1.22pyt_h9ef14d80b1 - osx_64_blas_implgenericnumpy1.22python3.9.____cpython: - CONFIG: osx_64_blas_implgenericnumpy1.22python3.9.____cpython - UPLOAD_PACKAGES: 'True' - SHORT_CONFIG: osx_64_blas_implgenericnumpy1.22pyt_he89dd260de - osx_64_blas_implgenericnumpy1.23python3.11.____cpython: - CONFIG: osx_64_blas_implgenericnumpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - SHORT_CONFIG: osx_64_blas_implgenericnumpy1.23pyt_hb6392de840 osx_64_blas_implmklnumpy1.22python3.10.____cpython: CONFIG: osx_64_blas_implmklnumpy1.22python3.10.____cpython UPLOAD_PACKAGES: 'True' SHORT_CONFIG: osx_64_blas_implmklnumpy1.22python3_h91c9557398 - osx_64_blas_implmklnumpy1.22python3.8.____cpython: - CONFIG: osx_64_blas_implmklnumpy1.22python3.8.____cpython - UPLOAD_PACKAGES: 'True' - SHORT_CONFIG: osx_64_blas_implmklnumpy1.22python3_h49b5513c47 - osx_64_blas_implmklnumpy1.22python3.9.____cpython: - CONFIG: osx_64_blas_implmklnumpy1.22python3.9.____cpython - UPLOAD_PACKAGES: 'True' - SHORT_CONFIG: osx_64_blas_implmklnumpy1.22python3_ha8f7634ffc - osx_64_blas_implmklnumpy1.23python3.11.____cpython: - CONFIG: osx_64_blas_implmklnumpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - SHORT_CONFIG: osx_64_blas_implmklnumpy1.23python3_hc56ac1fa22 osx_arm64_numpy1.22python3.10.____cpython: CONFIG: osx_arm64_numpy1.22python3.10.____cpython UPLOAD_PACKAGES: 'True' SHORT_CONFIG: osx_arm64_numpy1.22python3.10.____cpython - osx_arm64_numpy1.22python3.8.____cpython: - CONFIG: osx_arm64_numpy1.22python3.8.____cpython - UPLOAD_PACKAGES: 'True' - SHORT_CONFIG: osx_arm64_numpy1.22python3.8.____cpython - osx_arm64_numpy1.22python3.9.____cpython: - CONFIG: osx_arm64_numpy1.22python3.9.____cpython - UPLOAD_PACKAGES: 'True' - SHORT_CONFIG: osx_arm64_numpy1.22python3.9.____cpython - osx_arm64_numpy1.23python3.11.____cpython: - CONFIG: osx_arm64_numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - SHORT_CONFIG: osx_arm64_numpy1.23python3.11.____cpython timeoutInMinutes: 360 steps: diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython.yaml deleted file mode 100644 index 8c646ab2d..000000000 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -blas_impl: -- generic -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- '11.2' -cudnn: -- '8' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cuda:11.2 -libprotobuf: -- 4.24.3 -mkl: -- '2022' -nccl: -- '2' -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -pytorch: -- '2.0' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython.yaml deleted file mode 100644 index eeae84a1c..000000000 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -blas_impl: -- generic -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- '11.2' -cudnn: -- '8' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cuda:11.2 -libprotobuf: -- 4.24.3 -mkl: -- '2022' -nccl: -- '2' -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -pytorch: -- '2.0' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index cfae733b5..000000000 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -blas_impl: -- generic -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- '11.2' -cudnn: -- '8' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cuda:11.2 -libprotobuf: -- 4.24.3 -mkl: -- '2022' -nccl: -- '2' -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -pytorch: -- '2.0' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml deleted file mode 100644 index df58d0881..000000000 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -blas_impl: -- generic -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- '8' -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -libprotobuf: -- 4.24.3 -mkl: -- '2022' -nccl: -- '2' -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -pytorch: -- '2.0' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml deleted file mode 100644 index 12137b2bb..000000000 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -blas_impl: -- generic -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- '8' -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -libprotobuf: -- 4.24.3 -mkl: -- '2022' -nccl: -- '2' -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -pytorch: -- '2.0' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index 1ab9b00e5..000000000 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -blas_impl: -- generic -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- '8' -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -libprotobuf: -- 4.24.3 -mkl: -- '2022' -nccl: -- '2' -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -pytorch: -- '2.0' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython.yaml deleted file mode 100644 index 6da0546d5..000000000 --- a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -blas_impl: -- mkl -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- '11.2' -cudnn: -- '8' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cuda:11.2 -libprotobuf: -- 4.24.3 -mkl: -- '2022' -nccl: -- '2' -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -pytorch: -- '2.0' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython.yaml deleted file mode 100644 index 6b6bf1b2b..000000000 --- a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -blas_impl: -- mkl -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- '11.2' -cudnn: -- '8' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cuda:11.2 -libprotobuf: -- 4.24.3 -mkl: -- '2022' -nccl: -- '2' -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -pytorch: -- '2.0' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index 3707d7fe6..000000000 --- a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -blas_impl: -- mkl -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- '11.2' -cudnn: -- '8' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cuda:11.2 -libprotobuf: -- 4.24.3 -mkl: -- '2022' -nccl: -- '2' -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -pytorch: -- '2.0' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml deleted file mode 100644 index 1f37522af..000000000 --- a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -blas_impl: -- mkl -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- '8' -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -libprotobuf: -- 4.24.3 -mkl: -- '2022' -nccl: -- '2' -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -pytorch: -- '2.0' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml deleted file mode 100644 index 05a0f1235..000000000 --- a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -blas_impl: -- mkl -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- '8' -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -libprotobuf: -- 4.24.3 -mkl: -- '2022' -nccl: -- '2' -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -pytorch: -- '2.0' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index b9772bd4a..000000000 --- a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -blas_impl: -- mkl -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- '8' -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -libprotobuf: -- 4.24.3 -mkl: -- '2022' -nccl: -- '2' -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -pytorch: -- '2.0' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml deleted file mode 100644 index ce63e9e8e..000000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -blas_impl: -- generic -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- None -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -libprotobuf: -- 4.24.3 -mkl: -- '2022' -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -pytorch: -- '2.0' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml deleted file mode 100644 index 3a7352562..000000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -blas_impl: -- generic -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- None -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -libprotobuf: -- 4.24.3 -mkl: -- '2022' -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -pytorch: -- '2.0' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index 3ee724544..000000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -blas_impl: -- generic -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- None -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -libprotobuf: -- 4.24.3 -mkl: -- '2022' -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -pytorch: -- '2.0' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy diff --git a/.ci_support/osx_64_blas_implgenericnumpy1.22python3.8.____cpython.yaml b/.ci_support/osx_64_blas_implgenericnumpy1.22python3.8.____cpython.yaml deleted file mode 100644 index 38c5d9301..000000000 --- a/.ci_support/osx_64_blas_implgenericnumpy1.22python3.8.____cpython.yaml +++ /dev/null @@ -1,47 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.13' -MACOSX_SDK_VERSION: -- '12.3' -blas_impl: -- generic -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -libprotobuf: -- 4.24.3 -llvm_openmp: -- '16' -macos_machine: -- x86_64-apple-darwin13.4.0 -mkl: -- '2022' -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -pytorch: -- '2.0' -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy diff --git a/.ci_support/osx_64_blas_implgenericnumpy1.22python3.9.____cpython.yaml b/.ci_support/osx_64_blas_implgenericnumpy1.22python3.9.____cpython.yaml deleted file mode 100644 index c8ccf4813..000000000 --- a/.ci_support/osx_64_blas_implgenericnumpy1.22python3.9.____cpython.yaml +++ /dev/null @@ -1,47 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.13' -MACOSX_SDK_VERSION: -- '12.3' -blas_impl: -- generic -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -libprotobuf: -- 4.24.3 -llvm_openmp: -- '16' -macos_machine: -- x86_64-apple-darwin13.4.0 -mkl: -- '2022' -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -pytorch: -- '2.0' -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy diff --git a/.ci_support/osx_64_blas_implgenericnumpy1.23python3.11.____cpython.yaml b/.ci_support/osx_64_blas_implgenericnumpy1.23python3.11.____cpython.yaml deleted file mode 100644 index 24fbca19c..000000000 --- a/.ci_support/osx_64_blas_implgenericnumpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,47 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.13' -MACOSX_SDK_VERSION: -- '12.3' -blas_impl: -- generic -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -libprotobuf: -- 4.24.3 -llvm_openmp: -- '16' -macos_machine: -- x86_64-apple-darwin13.4.0 -mkl: -- '2022' -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -pytorch: -- '2.0' -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy diff --git a/.ci_support/osx_64_blas_implmklnumpy1.22python3.8.____cpython.yaml b/.ci_support/osx_64_blas_implmklnumpy1.22python3.8.____cpython.yaml deleted file mode 100644 index 25c0f8dec..000000000 --- a/.ci_support/osx_64_blas_implmklnumpy1.22python3.8.____cpython.yaml +++ /dev/null @@ -1,47 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.13' -MACOSX_SDK_VERSION: -- '12.3' -blas_impl: -- mkl -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -libprotobuf: -- 4.24.3 -llvm_openmp: -- '16' -macos_machine: -- x86_64-apple-darwin13.4.0 -mkl: -- '2022' -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -pytorch: -- '2.0' -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy diff --git a/.ci_support/osx_64_blas_implmklnumpy1.22python3.9.____cpython.yaml b/.ci_support/osx_64_blas_implmklnumpy1.22python3.9.____cpython.yaml deleted file mode 100644 index 24921dd1b..000000000 --- a/.ci_support/osx_64_blas_implmklnumpy1.22python3.9.____cpython.yaml +++ /dev/null @@ -1,47 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.13' -MACOSX_SDK_VERSION: -- '12.3' -blas_impl: -- mkl -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -libprotobuf: -- 4.24.3 -llvm_openmp: -- '16' -macos_machine: -- x86_64-apple-darwin13.4.0 -mkl: -- '2022' -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -pytorch: -- '2.0' -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy diff --git a/.ci_support/osx_64_blas_implmklnumpy1.23python3.11.____cpython.yaml b/.ci_support/osx_64_blas_implmklnumpy1.23python3.11.____cpython.yaml deleted file mode 100644 index 34ca0dee8..000000000 --- a/.ci_support/osx_64_blas_implmklnumpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,47 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.13' -MACOSX_SDK_VERSION: -- '12.3' -blas_impl: -- mkl -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -libprotobuf: -- 4.24.3 -llvm_openmp: -- '16' -macos_machine: -- x86_64-apple-darwin13.4.0 -mkl: -- '2022' -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -pytorch: -- '2.0' -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy diff --git a/.ci_support/osx_arm64_numpy1.22python3.8.____cpython.yaml b/.ci_support/osx_arm64_numpy1.22python3.8.____cpython.yaml deleted file mode 100644 index fac504cbb..000000000 --- a/.ci_support/osx_arm64_numpy1.22python3.8.____cpython.yaml +++ /dev/null @@ -1,47 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -MACOSX_SDK_VERSION: -- '12.3' -blas_impl: -- generic -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -libprotobuf: -- 4.24.3 -llvm_openmp: -- '16' -macos_machine: -- arm64-apple-darwin20.0.0 -mkl: -- '2022' -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -pytorch: -- '2.0' -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy diff --git a/.ci_support/osx_arm64_numpy1.22python3.9.____cpython.yaml b/.ci_support/osx_arm64_numpy1.22python3.9.____cpython.yaml deleted file mode 100644 index e0b2e777c..000000000 --- a/.ci_support/osx_arm64_numpy1.22python3.9.____cpython.yaml +++ /dev/null @@ -1,47 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -MACOSX_SDK_VERSION: -- '12.3' -blas_impl: -- generic -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -libprotobuf: -- 4.24.3 -llvm_openmp: -- '16' -macos_machine: -- arm64-apple-darwin20.0.0 -mkl: -- '2022' -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -pytorch: -- '2.0' -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy diff --git a/.ci_support/osx_arm64_numpy1.23python3.11.____cpython.yaml b/.ci_support/osx_arm64_numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index db329608d..000000000 --- a/.ci_support/osx_arm64_numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,47 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -MACOSX_SDK_VERSION: -- '12.3' -blas_impl: -- generic -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -libprotobuf: -- 4.24.3 -llvm_openmp: -- '16' -macos_machine: -- arm64-apple-darwin20.0.0 -mkl: -- '2022' -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -pytorch: -- '2.0' -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy diff --git a/README.md b/README.md index 8afb77ceb..45e7c30c4 100644 --- a/README.md +++ b/README.md @@ -33,27 +33,6 @@ Current build status variant - - linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython - - - variant - - - - linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython - - - variant - - - - linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython - - - variant - - linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython @@ -61,27 +40,6 @@ Current build status variant - - linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython - - - variant - - - - linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython - - - variant - - - - linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython - - - variant - - linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython @@ -89,27 +47,6 @@ Current build status variant - - linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpython - - - variant - - - - linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpython - - - variant - - - - linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpython - - - variant - - linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython @@ -117,27 +54,6 @@ Current build status variant - - linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython - - - variant - - - - linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython - - - variant - - - - linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython - - - variant - - linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython @@ -145,27 +61,6 @@ Current build status variant - - linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython - - - variant - - - - linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpython - - - variant - - - - linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpython - - - variant - - osx_64_blas_implgenericnumpy1.22python3.10.____cpython @@ -173,27 +68,6 @@ Current build status variant - - osx_64_blas_implgenericnumpy1.22python3.8.____cpython - - - variant - - - - osx_64_blas_implgenericnumpy1.22python3.9.____cpython - - - variant - - - - osx_64_blas_implgenericnumpy1.23python3.11.____cpython - - - variant - - osx_64_blas_implmklnumpy1.22python3.10.____cpython @@ -201,27 +75,6 @@ Current build status variant - - osx_64_blas_implmklnumpy1.22python3.8.____cpython - - - variant - - - - osx_64_blas_implmklnumpy1.22python3.9.____cpython - - - variant - - - - osx_64_blas_implmklnumpy1.23python3.11.____cpython - - - variant - - osx_arm64_numpy1.22python3.10.____cpython @@ -229,27 +82,6 @@ Current build status variant - - osx_arm64_numpy1.22python3.8.____cpython - - - variant - - - - osx_arm64_numpy1.22python3.9.____cpython - - - variant - - - - osx_arm64_numpy1.23python3.11.____cpython - - - variant - - From 111956b651a22efdeebde475db757a2986ce284e Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Sat, 28 Oct 2023 12:28:58 -0400 Subject: [PATCH 31/38] simplify recipe so we can actually debug locally --- recipe/{build_pytorch.sh => build.sh} | 0 recipe/meta.yaml | 275 +++++++++++--------------- 2 files changed, 119 insertions(+), 156 deletions(-) rename recipe/{build_pytorch.sh => build.sh} (100%) diff --git a/recipe/build_pytorch.sh b/recipe/build.sh similarity index 100% rename from recipe/build_pytorch.sh rename to recipe/build.sh diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 2e9f58514..b7065c723 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -10,7 +10,7 @@ {% endif %} package: - name: pytorch-recipe + name: pytorch version: {{ version }} source: @@ -29,167 +29,130 @@ build: skip: true # [cuda_compiler_version == "11.1"] skip: true # [py != 310] + string: cuda{{ cuda_compiler_version | replace('.', '') }}py{{ CONDA_PY }}h{{ PKG_HASH }}_{{ PKG_BUILDNUM }} # [cuda_compiler_version != "None"] + string: cpu_{{ blas_impl }}_py{{ CONDA_PY }}h{{ PKG_HASH }}_{{ PKG_BUILDNUM }} # [cuda_compiler_version == "None"] + detect_binary_files_with_prefix: false + run_exports: + - {{ pin_subpackage('pytorch', max_pin='x.x') }} + skip: true # [py != 310] + requirements: + build: + - python # [build_platform != target_platform] + - cross-python_{{ target_platform }} # [build_platform != target_platform] + - numpy # [build_platform != target_platform] + - sysroot_linux-64 2.17 # [linux64] + - {{ compiler('c') }} + - {{ compiler('cxx') }} + - {{ compiler('cuda') }} # [cuda_compiler_version != "None"] + - cuda-libraries-dev # [cuda_compiler_version != "None" and cuda_compiler_version.split(".")[0] >=12] + # Dec 2020: it seems that git is broken on windows, so we use m2-git + - patch # [not win] + - m2-patch # [win] + - git # [not win] + - m2-git # [win] + - libgomp # [linux] + - llvm-openmp # [osx] + - cmake + - ninja + # Keep libprotobuf here so that a compatibile version + # of protobuf is installed between build and host + - libprotobuf + - protobuf + - make # [linux] host: + # GPU requirements + - cudnn # [cuda_compiler_version != "None"] + - nccl # [cuda_compiler_version != "None"] + - magma # [cuda_compiler_version != "None"] + # other requirements - python + - numpy + - pip + - setuptools + - astunparse + - expecttest + - hypothesis + - numpy + - psutil + - pyyaml + - requests + - mkl-devel {{ mkl }} # [blas_impl == "mkl"] + - libcblas * *_mkl # [blas_impl == "mkl"] + - setuptools + - types-dataclasses + - sympy + - filelock + - networkx + - jinja2 + - fsspec + - packaging + - optree + - libcblas # [blas_impl != "mkl"] + - liblapack # [blas_impl != "mkl"] + - libgomp # [linux] + - llvm-openmp # [osx] + - libprotobuf + - sleef + - libuv + - pkg-config # [unix] run: + - llvm-openmp # [osx] + # GPU requirements without run_exports + - {{ pin_compatible('cudnn') }} # [cuda_compiler_version != "None"] + - {{ pin_compatible('magma', max_pin='x.x.x') }} # [cuda_compiler_version != "None"] + # other requirements - python + - typing_extensions + - sympy + - filelock + - jinja2 + - networkx + - nomkl # [blas_impl != "mkl"] + - fsspec + # avoid that people without GPUs needlessly download ~0.5-1GB + - __cuda # [cuda_compiler_version != "None"] + run_constrained: + # These constraints ensure conflict between pytorch and + # pytorch-cpu 1.1 which we built before conda-forge had GPU infrastructure + # built into place. + # https://github.com/conda-forge/pytorch-cpu-feedstock/issues/65 + - pytorch-cpu =={{ version }} # [cuda_compiler_version == "None"] + - pytorch-gpu ==99999999 # [cuda_compiler_version == "None"] + - pytorch-gpu =={{ version }} # [cuda_compiler_version != "None"] + - pytorch-cpu ==99999999 # [cuda_compiler_version != "None"] -outputs: - - name: pytorch - build: - string: cuda{{ cuda_compiler_version | replace('.', '') }}py{{ CONDA_PY }}h{{ PKG_HASH }}_{{ PKG_BUILDNUM }} # [cuda_compiler_version != "None"] - string: cpu_{{ blas_impl }}_py{{ CONDA_PY }}h{{ PKG_HASH }}_{{ PKG_BUILDNUM }} # [cuda_compiler_version == "None"] - detect_binary_files_with_prefix: false - run_exports: - - {{ pin_subpackage('pytorch', max_pin='x.x') }} - skip: true # [py != 310] - script: build_pytorch.sh # [not win] - script: bld_pytorch.bat # [win] - requirements: - build: - - python # [build_platform != target_platform] - - cross-python_{{ target_platform }} # [build_platform != target_platform] - - numpy # [build_platform != target_platform] - - sysroot_linux-64 2.17 # [linux64] - - {{ compiler('c') }} - - {{ compiler('cxx') }} - - {{ compiler('cuda') }} # [cuda_compiler_version != "None"] - - cuda-libraries-dev # [cuda_compiler_version != "None" and cuda_compiler_version.split(".")[0] >=12] - # Dec 2020: it seems that git is broken on windows, so we use m2-git - - patch # [not win] - - m2-patch # [win] - - git # [not win] - - m2-git # [win] - - libgomp # [linux] - - llvm-openmp # [osx] - - cmake - - ninja - # Keep libprotobuf here so that a compatibile version - # of protobuf is installed between build and host - - libprotobuf - - protobuf - - make # [linux] - host: - # GPU requirements - - cudnn # [cuda_compiler_version != "None"] - - nccl # [cuda_compiler_version != "None"] - - magma # [cuda_compiler_version != "None"] - # other requirements - - python - - numpy - - pip - - setuptools - - astunparse - - expecttest - - hypothesis - - numpy - - psutil - - pyyaml - - requests - - mkl-devel {{ mkl }} # [blas_impl == "mkl"] - - libcblas * *_mkl # [blas_impl == "mkl"] - - setuptools - - types-dataclasses - - sympy - - filelock - - networkx - - jinja2 - - fsspec - - packaging - - optree - - libcblas # [blas_impl != "mkl"] - - liblapack # [blas_impl != "mkl"] - - libgomp # [linux] - - llvm-openmp # [osx] - - libprotobuf - - sleef - - libuv - - pkg-config # [unix] - run: - - llvm-openmp # [osx] - # GPU requirements without run_exports - - {{ pin_compatible('cudnn') }} # [cuda_compiler_version != "None"] - - {{ pin_compatible('magma', max_pin='x.x.x') }} # [cuda_compiler_version != "None"] - # other requirements - - python - - typing_extensions - - sympy - - filelock - - jinja2 - - networkx - - nomkl # [blas_impl != "mkl"] - - fsspec - # avoid that people without GPUs needlessly download ~0.5-1GB - - __cuda # [cuda_compiler_version != "None"] - run_constrained: - # These constraints ensure conflict between pytorch and - # pytorch-cpu 1.1 which we built before conda-forge had GPU infrastructure - # built into place. - # https://github.com/conda-forge/pytorch-cpu-feedstock/issues/65 - - pytorch-cpu =={{ version }} # [cuda_compiler_version == "None"] - - pytorch-gpu ==99999999 # [cuda_compiler_version == "None"] - - pytorch-gpu =={{ version }} # [cuda_compiler_version != "None"] - - pytorch-cpu ==99999999 # [cuda_compiler_version != "None"] - - test: - requires: - - {{ compiler('c') }} - - {{ compiler('cxx') }} - - hypothesis - - pytest - - tabulate - - pydot - - mock # [linux] - - pip - - expecttest - - xmlrunner - imports: - - torch - source_files: - - test - # tools/ is needed to optimise test run - # as of pytorch=2.0.0, there is a bug when trying to run tests without the tools - - tools - commands: - - OMP_NUM_THREADS=4 python ./test/run_test.py || true # [not win] - - python ./test/run_test.py # [win] - # Run pip check so as to ensure that all pytorch packages are installed - # https://github.com/conda-forge/pytorch-cpu-feedstock/issues/24 - - pip check - - python -c "import torch; print(torch.__version__)" - - python -c "import torch; assert torch.backends.mkldnn.m.is_available()" # [x86 and cuda_compiler_version == "None"] - # At conda-forge, we target versions of OSX that are too old for MPS support - # But if users install a newer version of OSX, they will have MPS support - # https://github.com/conda-forge/pytorch-cpu-feedstock/pull/123#issuecomment-1186355073 - # - python -c "import torch; assert torch.backends.mps.is_available()" # [osx] - - # 2021/08/01, hmaarrfk - # While this seems like a roundabout way of defining the package name - # It helps the linter avoid errors on a package not having tests. - {% set pytorch_cpu_gpu = "pytorch-cpu" %} # [cuda_compiler_version == "None"] - {% set pytorch_cpu_gpu = "pytorch-gpu" %} # [cuda_compiler_version != "None"] - - name: {{ pytorch_cpu_gpu }} - build: - string: cuda{{ cuda_compiler_version | replace('.', '') }}py{{ CONDA_PY }}h{{ PKG_HASH }}_{{ PKG_BUILDNUM }} # [cuda_compiler_version != "None"] - string: cpu_{{ blas_impl }}_py{{ CONDA_PY }}h{{ PKG_HASH }}_{{ PKG_BUILDNUM }} # [cuda_compiler_version == "None"] - detect_binary_files_with_prefix: False - # weigh down cpu implementation and give cuda preference - track_features: - - pytorch-cpu # [cuda_compiler_version == "None"] - skip: true # [py != 310] - requirements: - build: - - python # [build_platform != target_platform] - - cross-python_{{ target_platform }} # [build_platform != target_platform] - host: - - python - run: - - python - - {{ pin_subpackage("pytorch", exact=True) }} - test: - imports: - - torch +test: + requires: + - {{ compiler('c') }} + - {{ compiler('cxx') }} + - hypothesis + - pytest + - tabulate + - pydot + - mock # [linux] + - pip + - expecttest + - xmlrunner + imports: + - torch + source_files: + - test + # tools/ is needed to optimise test run + # as of pytorch=2.0.0, there is a bug when trying to run tests without the tools + - tools + commands: + - OMP_NUM_THREADS=4 python ./test/run_test.py || true # [not win] + - python ./test/run_test.py # [win] + # Run pip check so as to ensure that all pytorch packages are installed + # https://github.com/conda-forge/pytorch-cpu-feedstock/issues/24 + - pip check + - python -c "import torch; print(torch.__version__)" + - python -c "import torch; assert torch.backends.mkldnn.m.is_available()" # [x86 and cuda_compiler_version == "None"] + # At conda-forge, we target versions of OSX that are too old for MPS support + # But if users install a newer version of OSX, they will have MPS support + # https://github.com/conda-forge/pytorch-cpu-feedstock/pull/123#issuecomment-1186355073 + # - python -c "import torch; assert torch.backends.mps.is_available()" # [osx] about: home: https://pytorch.org/ From 0d3e2c080b59618acdbbcf1151635e2bd68cf052 Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Sat, 28 Oct 2023 12:30:01 -0400 Subject: [PATCH 32/38] MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.27.1, and conda-forge-pinning 2023.10.28.13.26.14 --- .azure-pipelines/azure-pipelines-linux.yml | 6 +++--- ...ler_version10numpy1.22python3.10.____cpython.yaml | 6 ++++-- ...ler_version12numpy1.22python3.10.____cpython.yaml | 6 ++++-- ...ler_version10numpy1.22python3.10.____cpython.yaml | 6 ++++-- ...ler_version12numpy1.22python3.10.____cpython.yaml | 6 ++++-- ...er_version12numpy1.22python3.10.____cpython.yaml} | 8 +++++--- ...s_implgenericnumpy1.22python3.10.____cpython.yaml | 6 ++++-- ..._blas_implmklnumpy1.22python3.10.____cpython.yaml | 6 ++++-- .../osx_arm64_numpy1.22python3.10.____cpython.yaml | 6 ++++-- README.md | 12 +++++------- 10 files changed, 41 insertions(+), 27 deletions(-) rename .ci_support/{linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml => linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml} (92%) diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index 429d9d6b1..9c076ddf7 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -28,11 +28,11 @@ jobs: UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 SHORT_CONFIG: linux_64_blas_implmklc_compiler_ver_hfe9342d6a9 - ? linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython + ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h47a7e314ee + SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h3b2db91ff0 timeoutInMinutes: 360 steps: diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml index 9ff5bda36..fcd07d4a3 100644 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml @@ -22,6 +22,10 @@ cxx_compiler_version: - '10' docker_image: - quay.io/condaforge/linux-anvil-cuda:11.2 +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib libprotobuf: - 4.24.3 mkl: @@ -36,8 +40,6 @@ pin_run_as_build: max_pin: x.x python: - 3.10.* *_cpython -pytorch: -- '2.0' target_platform: - linux-64 zip_keys: diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml index 8a52ae1ab..93761c1e7 100644 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml @@ -22,6 +22,10 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib libprotobuf: - 4.24.3 mkl: @@ -36,8 +40,6 @@ pin_run_as_build: max_pin: x.x python: - 3.10.* *_cpython -pytorch: -- '2.0' target_platform: - linux-64 zip_keys: diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml index d7e10e9ec..8ad1ec28c 100644 --- a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml @@ -22,6 +22,10 @@ cxx_compiler_version: - '10' docker_image: - quay.io/condaforge/linux-anvil-cuda:11.2 +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib libprotobuf: - 4.24.3 mkl: @@ -36,8 +40,6 @@ pin_run_as_build: max_pin: x.x python: - 3.10.* *_cpython -pytorch: -- '2.0' target_platform: - linux-64 zip_keys: diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml index 2660d4021..8399d006c 100644 --- a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml @@ -22,6 +22,10 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib libprotobuf: - 4.24.3 mkl: @@ -36,8 +40,6 @@ pin_run_as_build: max_pin: x.x python: - 3.10.* *_cpython -pytorch: -- '2.0' target_platform: - linux-64 zip_keys: diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml similarity index 92% rename from .ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml rename to .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml index d0770dc35..21c8369b6 100644 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml @@ -15,7 +15,7 @@ channel_sources: channel_targets: - conda-forge main cuda_compiler: -- nvcc +- None cuda_compiler_version: - None cxx_compiler: @@ -24,6 +24,10 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib libprotobuf: - 4.24.3 mkl: @@ -36,8 +40,6 @@ pin_run_as_build: max_pin: x.x python: - 3.10.* *_cpython -pytorch: -- '2.0' target_platform: - linux-aarch64 zip_keys: diff --git a/.ci_support/osx_64_blas_implgenericnumpy1.22python3.10.____cpython.yaml b/.ci_support/osx_64_blas_implgenericnumpy1.22python3.10.____cpython.yaml index 550c8ddd6..73cdc54de 100644 --- a/.ci_support/osx_64_blas_implgenericnumpy1.22python3.10.____cpython.yaml +++ b/.ci_support/osx_64_blas_implgenericnumpy1.22python3.10.____cpython.yaml @@ -20,6 +20,10 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: @@ -36,8 +40,6 @@ pin_run_as_build: max_pin: x.x python: - 3.10.* *_cpython -pytorch: -- '2.0' target_platform: - osx-64 zip_keys: diff --git a/.ci_support/osx_64_blas_implmklnumpy1.22python3.10.____cpython.yaml b/.ci_support/osx_64_blas_implmklnumpy1.22python3.10.____cpython.yaml index 3ed1c3849..242f533ce 100644 --- a/.ci_support/osx_64_blas_implmklnumpy1.22python3.10.____cpython.yaml +++ b/.ci_support/osx_64_blas_implmklnumpy1.22python3.10.____cpython.yaml @@ -20,6 +20,10 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: @@ -36,8 +40,6 @@ pin_run_as_build: max_pin: x.x python: - 3.10.* *_cpython -pytorch: -- '2.0' target_platform: - osx-64 zip_keys: diff --git a/.ci_support/osx_arm64_numpy1.22python3.10.____cpython.yaml b/.ci_support/osx_arm64_numpy1.22python3.10.____cpython.yaml index 3979cdf43..b8d2a8c41 100644 --- a/.ci_support/osx_arm64_numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/osx_arm64_numpy1.22python3.10.____cpython.yaml @@ -20,6 +20,10 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: @@ -36,8 +40,6 @@ pin_run_as_build: max_pin: x.x python: - 3.10.* *_cpython -pytorch: -- '2.0' target_platform: - osx-arm64 zip_keys: diff --git a/README.md b/README.md index 45e7c30c4..2aaf1d66d 100644 --- a/README.md +++ b/README.md @@ -55,10 +55,10 @@ Current build status - linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython + linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython - variant + variant @@ -96,8 +96,6 @@ Current release info | Name | Downloads | Version | Platforms | | --- | --- | --- | --- | | [![Conda Recipe](https://img.shields.io/badge/recipe-pytorch-green.svg)](https://anaconda.org/conda-forge/pytorch) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/pytorch.svg)](https://anaconda.org/conda-forge/pytorch) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/pytorch.svg)](https://anaconda.org/conda-forge/pytorch) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/pytorch.svg)](https://anaconda.org/conda-forge/pytorch) | -| [![Conda Recipe](https://img.shields.io/badge/recipe-pytorch--cpu-green.svg)](https://anaconda.org/conda-forge/pytorch-cpu) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/pytorch-cpu.svg)](https://anaconda.org/conda-forge/pytorch-cpu) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/pytorch-cpu.svg)](https://anaconda.org/conda-forge/pytorch-cpu) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/pytorch-cpu.svg)](https://anaconda.org/conda-forge/pytorch-cpu) | -| [![Conda Recipe](https://img.shields.io/badge/recipe-pytorch--gpu-green.svg)](https://anaconda.org/conda-forge/pytorch-gpu) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/pytorch-gpu.svg)](https://anaconda.org/conda-forge/pytorch-gpu) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/pytorch-gpu.svg)](https://anaconda.org/conda-forge/pytorch-gpu) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/pytorch-gpu.svg)](https://anaconda.org/conda-forge/pytorch-gpu) | Installing pytorch-cpu ====================== @@ -109,16 +107,16 @@ conda config --add channels conda-forge conda config --set channel_priority strict ``` -Once the `conda-forge` channel has been enabled, `pytorch, pytorch-cpu, pytorch-gpu` can be installed with `conda`: +Once the `conda-forge` channel has been enabled, `pytorch` can be installed with `conda`: ``` -conda install pytorch pytorch-cpu pytorch-gpu +conda install pytorch ``` or with `mamba`: ``` -mamba install pytorch pytorch-cpu pytorch-gpu +mamba install pytorch ``` It is possible to list all of the versions of `pytorch` available on your platform with `conda`: From 11fbce1186cdc619d5d814103cba84472778e895 Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Sat, 28 Oct 2023 12:31:34 -0400 Subject: [PATCH 33/38] Undo changes that tried to help rerendering --- recipe/meta.yaml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 2e9f58514..e8cccaf8a 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -27,13 +27,6 @@ build: skip: true # [cuda_compiler_version == "10.2"] skip: true # [cuda_compiler_version == "11.0"] skip: true # [cuda_compiler_version == "11.1"] - skip: true # [py != 310] - -requirements: - host: - - python - run: - - python outputs: - name: pytorch @@ -43,7 +36,6 @@ outputs: detect_binary_files_with_prefix: false run_exports: - {{ pin_subpackage('pytorch', max_pin='x.x') }} - skip: true # [py != 310] script: build_pytorch.sh # [not win] script: bld_pytorch.bat # [win] requirements: @@ -177,13 +169,7 @@ outputs: # weigh down cpu implementation and give cuda preference track_features: - pytorch-cpu # [cuda_compiler_version == "None"] - skip: true # [py != 310] requirements: - build: - - python # [build_platform != target_platform] - - cross-python_{{ target_platform }} # [build_platform != target_platform] - host: - - python run: - python - {{ pin_subpackage("pytorch", exact=True) }} From 8a58b03f0e9f82c667aa726272b74694a53b1329 Mon Sep 17 00:00:00 2001 From: Raul Date: Sun, 29 Oct 2023 07:09:37 +0100 Subject: [PATCH 34/38] Update recipe/meta.yaml Co-authored-by: Mark Harfouche --- recipe/meta.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index e8cccaf8a..f0175f9b6 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -171,7 +171,6 @@ outputs: - pytorch-cpu # [cuda_compiler_version == "None"] requirements: run: - - python - {{ pin_subpackage("pytorch", exact=True) }} test: imports: From bf7f2945b081b95790be38cfef8c9c6acc5ec01e Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Sun, 29 Oct 2023 08:17:42 -0400 Subject: [PATCH 35/38] link as needed --- recipe/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/build.sh b/recipe/build.sh index 6fd49c3ee..ef5cb71af 100644 --- a/recipe/build.sh +++ b/recipe/build.sh @@ -14,7 +14,7 @@ export USE_NUMA=0 export USE_ITT=0 # export CFLAGS="$(echo $CFLAGS | sed 's/-fvisibility-inlines-hidden//g')" # export CXXFLAGS="$(echo $CXXFLAGS | sed 's/-fvisibility-inlines-hidden//g')" -# export LDFLAGS="$(echo $LDFLAGS | sed 's/-Wl,--as-needed//g')" +export LDFLAGS="$(echo $LDFLAGS | sed 's/-Wl,--as-needed//g')" # export LDFLAGS="$(echo $LDFLAGS | sed 's/-Wl,-dead_strip_dylibs//g')" # export LDFLAGS_LD="$(echo $LDFLAGS_LD | sed 's/-dead_strip_dylibs//g')" # if [[ "$c_compiler" == "clang" ]]; then From b18232f0f9e52714de6b007a9eaa9d3184e6b661 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Mon, 30 Oct 2023 08:39:53 +0100 Subject: [PATCH 36/38] Changes to BLAS. Remove sleef and libuv in osx --- recipe/meta.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index f0175f9b6..f0f6aa44a 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -81,6 +81,9 @@ outputs: - requests - mkl-devel {{ mkl }} # [blas_impl == "mkl"] - libcblas * *_mkl # [blas_impl == "mkl"] + - libblas # [blas_impl != "mkl"] + - libcblas # [blas_impl != "mkl"] + - liblapack # [blas_impl != "mkl" - setuptools - types-dataclasses - sympy @@ -90,13 +93,11 @@ outputs: - fsspec - packaging - optree - - libcblas # [blas_impl != "mkl"] - - liblapack # [blas_impl != "mkl"] - libgomp # [linux] - llvm-openmp # [osx] - libprotobuf - - sleef - - libuv + - sleef # [not osx] + - libuv # [not osx] - pkg-config # [unix] run: - llvm-openmp # [osx] From 5641622cce1913c839f5bd31e9c6cd7cfdaad008 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Mon, 30 Oct 2023 11:48:53 +0100 Subject: [PATCH 37/38] Update meta.yaml --- recipe/meta.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index f0f6aa44a..395b5efdb 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -83,7 +83,7 @@ outputs: - libcblas * *_mkl # [blas_impl == "mkl"] - libblas # [blas_impl != "mkl"] - libcblas # [blas_impl != "mkl"] - - liblapack # [blas_impl != "mkl" + - liblapack # [blas_impl != "mkl"] - setuptools - types-dataclasses - sympy @@ -96,8 +96,8 @@ outputs: - libgomp # [linux] - llvm-openmp # [osx] - libprotobuf - - sleef # [not osx] - - libuv # [not osx] + - sleef + - libuv - pkg-config # [unix] run: - llvm-openmp # [osx] From fd2e7a2746c2cff880dd7002df0de833757564a6 Mon Sep 17 00:00:00 2001 From: RaulPPealez Date: Mon, 30 Oct 2023 12:04:22 +0100 Subject: [PATCH 38/38] MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.27.1, and conda-forge-pinning 2023.10.30.10.19.43 --- .azure-pipelines/azure-pipelines-linux.yml | 6 +++--- ...ler_version10numpy1.22python3.10.____cpython.yaml | 8 ++++++-- ...ler_version12numpy1.22python3.10.____cpython.yaml | 8 ++++++-- ...ler_version10numpy1.22python3.10.____cpython.yaml | 8 ++++++-- ...ler_version12numpy1.22python3.10.____cpython.yaml | 8 ++++++-- ...er_version12numpy1.22python3.10.____cpython.yaml} | 10 +++++++--- ...s_implgenericnumpy1.22python3.10.____cpython.yaml | 8 ++++++-- ..._blas_implmklnumpy1.22python3.10.____cpython.yaml | 8 ++++++-- .../osx_arm64_numpy1.22python3.10.____cpython.yaml | 8 ++++++-- README.md | 12 +++++------- 10 files changed, 57 insertions(+), 27 deletions(-) rename .ci_support/{linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml => linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml} (89%) diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index 429d9d6b1..9c076ddf7 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -28,11 +28,11 @@ jobs: UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 SHORT_CONFIG: linux_64_blas_implmklc_compiler_ver_hfe9342d6a9 - ? linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython + ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h47a7e314ee + SHORT_CONFIG: linux_aarch64_c_compiler_version12c_h3b2db91ff0 timeoutInMinutes: 360 steps: diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml index 9ff5bda36..39a70b208 100644 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/linux_64_blas_implgenericc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml @@ -22,6 +22,12 @@ cxx_compiler_version: - '10' docker_image: - quay.io/condaforge/linux-anvil-cuda:11.2 +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib libprotobuf: - 4.24.3 mkl: @@ -36,8 +42,6 @@ pin_run_as_build: max_pin: x.x python: - 3.10.* *_cpython -pytorch: -- '2.0' target_platform: - linux-64 zip_keys: diff --git a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml b/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml index 8a52ae1ab..97815646f 100644 --- a/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/linux_64_blas_implgenericc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml @@ -22,6 +22,12 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib libprotobuf: - 4.24.3 mkl: @@ -36,8 +42,6 @@ pin_run_as_build: max_pin: x.x python: - 3.10.* *_cpython -pytorch: -- '2.0' target_platform: - linux-64 zip_keys: diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml index d7e10e9ec..eeb8d1218 100644 --- a/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/linux_64_blas_implmklc_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpython.yaml @@ -22,6 +22,12 @@ cxx_compiler_version: - '10' docker_image: - quay.io/condaforge/linux-anvil-cuda:11.2 +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib libprotobuf: - 4.24.3 mkl: @@ -36,8 +42,6 @@ pin_run_as_build: max_pin: x.x python: - 3.10.* *_cpython -pytorch: -- '2.0' target_platform: - linux-64 zip_keys: diff --git a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml b/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml index 2660d4021..e6f1e9a6a 100644 --- a/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/linux_64_blas_implmklc_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml @@ -22,6 +22,12 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib libprotobuf: - 4.24.3 mkl: @@ -36,8 +42,6 @@ pin_run_as_build: max_pin: x.x python: - 3.10.* *_cpython -pytorch: -- '2.0' target_platform: - linux-64 zip_keys: diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml similarity index 89% rename from .ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml rename to .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml index d0770dc35..ea95fdb4e 100644 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython.yaml @@ -15,7 +15,7 @@ channel_sources: channel_targets: - conda-forge main cuda_compiler: -- nvcc +- None cuda_compiler_version: - None cxx_compiler: @@ -24,6 +24,12 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib libprotobuf: - 4.24.3 mkl: @@ -36,8 +42,6 @@ pin_run_as_build: max_pin: x.x python: - 3.10.* *_cpython -pytorch: -- '2.0' target_platform: - linux-aarch64 zip_keys: diff --git a/.ci_support/osx_64_blas_implgenericnumpy1.22python3.10.____cpython.yaml b/.ci_support/osx_64_blas_implgenericnumpy1.22python3.10.____cpython.yaml index 550c8ddd6..ead0b3b52 100644 --- a/.ci_support/osx_64_blas_implgenericnumpy1.22python3.10.____cpython.yaml +++ b/.ci_support/osx_64_blas_implgenericnumpy1.22python3.10.____cpython.yaml @@ -20,6 +20,12 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: @@ -36,8 +42,6 @@ pin_run_as_build: max_pin: x.x python: - 3.10.* *_cpython -pytorch: -- '2.0' target_platform: - osx-64 zip_keys: diff --git a/.ci_support/osx_64_blas_implmklnumpy1.22python3.10.____cpython.yaml b/.ci_support/osx_64_blas_implmklnumpy1.22python3.10.____cpython.yaml index 3ed1c3849..b26b35c7c 100644 --- a/.ci_support/osx_64_blas_implmklnumpy1.22python3.10.____cpython.yaml +++ b/.ci_support/osx_64_blas_implmklnumpy1.22python3.10.____cpython.yaml @@ -20,6 +20,12 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: @@ -36,8 +42,6 @@ pin_run_as_build: max_pin: x.x python: - 3.10.* *_cpython -pytorch: -- '2.0' target_platform: - osx-64 zip_keys: diff --git a/.ci_support/osx_arm64_numpy1.22python3.10.____cpython.yaml b/.ci_support/osx_arm64_numpy1.22python3.10.____cpython.yaml index 3979cdf43..6c5a34b0f 100644 --- a/.ci_support/osx_arm64_numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/osx_arm64_numpy1.22python3.10.____cpython.yaml @@ -20,6 +20,12 @@ cxx_compiler: - clangxx cxx_compiler_version: - '15' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib libprotobuf: - 4.24.3 llvm_openmp: @@ -36,8 +42,6 @@ pin_run_as_build: max_pin: x.x python: - 3.10.* *_cpython -pytorch: -- '2.0' target_platform: - osx-arm64 zip_keys: diff --git a/README.md b/README.md index 45e7c30c4..2aaf1d66d 100644 --- a/README.md +++ b/README.md @@ -55,10 +55,10 @@ Current build status - linux_aarch64_c_compiler_version12cuda_compilernvcccuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython + linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpython - variant + variant @@ -96,8 +96,6 @@ Current release info | Name | Downloads | Version | Platforms | | --- | --- | --- | --- | | [![Conda Recipe](https://img.shields.io/badge/recipe-pytorch-green.svg)](https://anaconda.org/conda-forge/pytorch) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/pytorch.svg)](https://anaconda.org/conda-forge/pytorch) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/pytorch.svg)](https://anaconda.org/conda-forge/pytorch) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/pytorch.svg)](https://anaconda.org/conda-forge/pytorch) | -| [![Conda Recipe](https://img.shields.io/badge/recipe-pytorch--cpu-green.svg)](https://anaconda.org/conda-forge/pytorch-cpu) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/pytorch-cpu.svg)](https://anaconda.org/conda-forge/pytorch-cpu) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/pytorch-cpu.svg)](https://anaconda.org/conda-forge/pytorch-cpu) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/pytorch-cpu.svg)](https://anaconda.org/conda-forge/pytorch-cpu) | -| [![Conda Recipe](https://img.shields.io/badge/recipe-pytorch--gpu-green.svg)](https://anaconda.org/conda-forge/pytorch-gpu) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/pytorch-gpu.svg)](https://anaconda.org/conda-forge/pytorch-gpu) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/pytorch-gpu.svg)](https://anaconda.org/conda-forge/pytorch-gpu) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/pytorch-gpu.svg)](https://anaconda.org/conda-forge/pytorch-gpu) | Installing pytorch-cpu ====================== @@ -109,16 +107,16 @@ conda config --add channels conda-forge conda config --set channel_priority strict ``` -Once the `conda-forge` channel has been enabled, `pytorch, pytorch-cpu, pytorch-gpu` can be installed with `conda`: +Once the `conda-forge` channel has been enabled, `pytorch` can be installed with `conda`: ``` -conda install pytorch pytorch-cpu pytorch-gpu +conda install pytorch ``` or with `mamba`: ``` -mamba install pytorch pytorch-cpu pytorch-gpu +mamba install pytorch ``` It is possible to list all of the versions of `pytorch` available on your platform with `conda`: