From 7b148bd20f4f481142437e7953d4f4d30c3b25ec Mon Sep 17 00:00:00 2001 From: regro-cf-autotick-bot <36490558+regro-cf-autotick-bot@users.noreply.github.com> Date: Wed, 20 Sep 2023 23:05:58 +0000 Subject: [PATCH 01/12] updated v1.16.0 --- recipe/conda_build_config.yaml | 8 ++++++++ recipe/meta.yaml | 11 +++++------ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml index 6fafa457..20d42575 100644 --- a/recipe/conda_build_config.yaml +++ b/recipe/conda_build_config.yaml @@ -5,3 +5,11 @@ MACOSX_SDK_VERSION: # [osx and x86_64] suffix: - "" - "-novec" +cudnn: # [linux64] + - undefined # [linux64] +cuda_compiler_version: # [linux64] + - None # [linux64] +docker_image: # [linux64] + - quay.io/condaforge/linux-anvil-cos7-x86_64 # [linux64] +cdt_name: # [linux64] + - cos7 # [linux64] diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 1ff96955..df90ae3a 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,7 +1,7 @@ {% set name = "onnxruntime" %} {% set cuda_enabled = cuda_compiler_version != "None" %} {% set build_ext = "cuda" if cuda_enabled else "cpu" %} -{% set version = "1.15.1" %} +{% set version = "1.16.0" %} package: name: {{ name|lower }}{{ suffix }} @@ -9,7 +9,7 @@ package: source: - url: https://github.com/microsoft/onnxruntime/archive/refs/tags/v{{ version }}.tar.gz - sha256: 93a9b6f148639938ccbaa48d0f641d8f33312fdfcc69ee9466e11362b43917c4 + sha256: 3a4e57d454bce4349e11e2262fc47728a78b86ef1e0754514bbbc7d709e0a80d patches: - never_call_install_python_deps.patch # Workaround for https://github.com/conda-forge/onnxruntime-feedstock/pull/56#issuecomment-1586080419 @@ -23,7 +23,7 @@ source: build: - number: 3 + number: 0 # Since 1.11, power9 seems to be required. skip: true # [ppc64le or (cuda_compiler_version == "10.2" or cuda_compiler_version == "11.0" or cuda_compiler_version == "11.1")] string: py{{ CONDA_PY }}h{{ PKG_HASH }}_{{ PKG_BUILDNUM }}_{{ build_ext }} @@ -33,8 +33,7 @@ build: # https://github.com/microsoft/onnxruntime/blob/main/setup.py#L735 entry_points: - onnxruntime_test = onnxruntime.tools.onnxruntime_test:main - track_features: - {{ "- onnxruntime-cuda" if cuda_enabled else "" }} + track_features: {{ "- onnxruntime-cuda" if cuda_enabled else "" }} requirements: build: @@ -97,7 +96,7 @@ outputs: - {{ compiler('c') }} - {{ compiler('cxx') }} run: - - __cuda # [cuda_compiler_version != "None"] + - __cuda # [cuda_compiler_version != "None"] run_constrained: - onnxruntime-cpp <0a0 # [suffix == "-novec"] test: From f75a8b3ccbc628b59cf1938c1a27b98fbd4c0c97 Mon Sep 17 00:00:00 2001 From: Christian Bourjau Date: Mon, 25 Sep 2023 09:32:56 +0200 Subject: [PATCH 02/12] Fix conda-smithy error --- recipe/meta.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index df90ae3a..23ddf3b5 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -33,7 +33,8 @@ build: # https://github.com/microsoft/onnxruntime/blob/main/setup.py#L735 entry_points: - onnxruntime_test = onnxruntime.tools.onnxruntime_test:main - track_features: {{ "- onnxruntime-cuda" if cuda_enabled else "" }} + track_features: + {{ "- onnxruntime-cuda" if cuda_enabled else "" }} requirements: build: From d7c9966d14d7793c2e80717729ffa410e9f0dc6b Mon Sep 17 00:00:00 2001 From: Christian Bourjau Date: Mon, 25 Sep 2023 12:29:25 +0200 Subject: [PATCH 03/12] Remove unused license and patches --- recipe/16337.patch | 14 -------------- recipe/fix_missing_cuda_definition.patch | 24 ------------------------ recipe/meta.yaml | 5 ----- 3 files changed, 43 deletions(-) delete mode 100644 recipe/16337.patch delete mode 100644 recipe/fix_missing_cuda_definition.patch diff --git a/recipe/16337.patch b/recipe/16337.patch deleted file mode 100644 index 44a5b8eb..00000000 --- a/recipe/16337.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt -index 7e39c7da9d8..2d403cf2715 100644 ---- a/cmake/CMakeLists.txt -+++ b/cmake/CMakeLists.txt -@@ -1287,7 +1287,8 @@ endif() - string(APPEND ORT_BUILD_INFO "build type=${CMAKE_BUILD_TYPE}") - string(APPEND ORT_BUILD_INFO ", cmake cxx flags: ${CMAKE_CXX_FLAGS}") - configure_file(onnxruntime_config.h.in ${CMAKE_CURRENT_BINARY_DIR}/onnxruntime_config.h) --if (WIN32) -+get_property(onnxruntime_GENERATOR_IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) -+if (onnxruntime_GENERATOR_IS_MULTI_CONFIG) - configure_file(../requirements.txt.in ${CMAKE_CURRENT_BINARY_DIR}/Debug/requirements.txt) - configure_file(../requirements.txt.in ${CMAKE_CURRENT_BINARY_DIR}/Release/requirements.txt) - configure_file(../requirements.txt.in ${CMAKE_CURRENT_BINARY_DIR}/RelWithDebInfo/requirements.txt) diff --git a/recipe/fix_missing_cuda_definition.patch b/recipe/fix_missing_cuda_definition.patch deleted file mode 100644 index cb9ef60c..00000000 --- a/recipe/fix_missing_cuda_definition.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 6f101187040f098ac0738d1b7f92ea41aa7cbd01 Mon Sep 17 00:00:00 2001 -From: Silvio Traversaro -Date: Tue, 27 Jun 2023 10:42:22 +0200 -Subject: [PATCH] Fix compilation error due to missing ORT_UNUSED_VARIABLE - definition - -See https://github.com/microsoft/onnxruntime/issues/16000#issuecomment-1562265152 for details ---- - onnxruntime/contrib_ops/cuda/bert/attention.cc | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/onnxruntime/contrib_ops/cuda/bert/attention.cc b/onnxruntime/contrib_ops/cuda/bert/attention.cc -index bd1498c0f9de..ada7bc5fa259 100644 ---- a/onnxruntime/contrib_ops/cuda/bert/attention.cc -+++ b/onnxruntime/contrib_ops/cuda/bert/attention.cc -@@ -164,7 +164,7 @@ Status Attention::ComputeInternal(OpKernelContext* context) const { - has_memory_efficient_attention(sm, sizeof(T) == 2); - #else - constexpr bool use_memory_efficient_attention = false; -- ORT_UNUSED_VARIABLE(is_mask_1d_key_seq_len_start); -+ ORT_UNUSED_PARAMETER(is_mask_1d_key_seq_len_start); - #endif - - cublasHandle_t cublas = GetCublasHandle(context); diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 23ddf3b5..e46746ef 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -14,10 +14,6 @@ source: - never_call_install_python_deps.patch # Workaround for https://github.com/conda-forge/onnxruntime-feedstock/pull/56#issuecomment-1586080419 - windows_workaround_conflict_onnxruntime_dll_system32.patch # [win] - - 16337.patch - # Temporary fix for CUDA compilation, see https://github.com/microsoft/onnxruntime/issues/16000#issuecomment-1562265152 - # this can be removed once we bump to 1.16 release - - fix_missing_cuda_definition.patch # Workaround for https://github.com/microsoft/onnxruntime/issues/13225 - comment_InterThreadPoolWithDenormalAsZero.patch # [osx] @@ -136,7 +132,6 @@ about: - build-ci/Release/_deps/flatbuffers-src/LICENSE.txt - build-ci/Release/_deps/google_nsync-src/LICENSE # [not win] - build-ci/Release/_deps/gsl-src/LICENSE - - build-ci/Release/_deps/microsoft_wil-src/LICENSE - build-ci/Release/_deps/nlohmann_json-src/LICENSE.MIT - build-ci/Release/_deps/onnx-src/LICENSE - build-ci/Release/_deps/protobuf-src/LICENSE From c2cdee6ce55c9c255d31778f0b1f04bd5777e911 Mon Sep 17 00:00:00 2001 From: Christian Bourjau Date: Mon, 25 Sep 2023 14:22:50 +0200 Subject: [PATCH 04/12] Use vs2023 on Windows and skip most builds --- .azure-pipelines/azure-pipelines-linux.yml | 187 -------- .azure-pipelines/azure-pipelines-osx.yml | 79 ---- .azure-pipelines/azure-pipelines-win.yml | 109 +---- ....22python3.10.____cpythonsuffix-novec.yaml | 45 -- ...numpy1.22python3.10.____cpythonsuffix.yaml | 45 -- ...1.22python3.8.____cpythonsuffix-novec.yaml | 45 -- ...0numpy1.22python3.8.____cpythonsuffix.yaml | 45 -- ...1.22python3.9.____cpythonsuffix-novec.yaml | 45 -- ...0numpy1.22python3.9.____cpythonsuffix.yaml | 45 -- ....23python3.11.____cpythonsuffix-novec.yaml | 45 -- ...numpy1.23python3.11.____cpythonsuffix.yaml | 45 -- ....22python3.10.____cpythonsuffix-novec.yaml | 45 -- ...numpy1.22python3.10.____cpythonsuffix.yaml | 45 -- ...1.22python3.8.____cpythonsuffix-novec.yaml | 45 -- ...2numpy1.22python3.8.____cpythonsuffix.yaml | 45 -- ...1.22python3.9.____cpythonsuffix-novec.yaml | 45 -- ...2numpy1.22python3.9.____cpythonsuffix.yaml | 45 -- ....23python3.11.____cpythonsuffix-novec.yaml | 45 -- ...numpy1.23python3.11.____cpythonsuffix.yaml | 45 -- ....22python3.10.____cpythonsuffix-novec.yaml | 49 -- ...numpy1.22python3.10.____cpythonsuffix.yaml | 49 -- ...1.22python3.8.____cpythonsuffix-novec.yaml | 49 -- ...0numpy1.22python3.8.____cpythonsuffix.yaml | 49 -- ...1.22python3.9.____cpythonsuffix-novec.yaml | 49 -- ...0numpy1.22python3.9.____cpythonsuffix.yaml | 49 -- ....23python3.11.____cpythonsuffix-novec.yaml | 49 -- ...numpy1.23python3.11.____cpythonsuffix.yaml | 49 -- ....22python3.10.____cpythonsuffix-novec.yaml | 49 -- ...numpy1.22python3.10.____cpythonsuffix.yaml | 49 -- ...1.22python3.8.____cpythonsuffix-novec.yaml | 49 -- ...2numpy1.22python3.8.____cpythonsuffix.yaml | 49 -- ...1.22python3.9.____cpythonsuffix-novec.yaml | 49 -- ...2numpy1.22python3.9.____cpythonsuffix.yaml | 49 -- ....23python3.11.____cpythonsuffix-novec.yaml | 49 -- ...numpy1.23python3.11.____cpythonsuffix.yaml | 49 -- .ci_support/migrations/python311.yaml | 37 -- ....22python3.10.____cpythonsuffix-novec.yaml | 39 -- ...numpy1.22python3.10.____cpythonsuffix.yaml | 39 -- ...1.22python3.8.____cpythonsuffix-novec.yaml | 39 -- ..._numpy1.22python3.8.____cpythonsuffix.yaml | 39 -- ...1.22python3.9.____cpythonsuffix-novec.yaml | 39 -- ..._numpy1.22python3.9.____cpythonsuffix.yaml | 39 -- ....23python3.11.____cpythonsuffix-novec.yaml | 39 -- ...numpy1.23python3.11.____cpythonsuffix.yaml | 39 -- ....22python3.10.____cpythonsuffix-novec.yaml | 37 -- ...numpy1.22python3.10.____cpythonsuffix.yaml | 37 -- ...1.22python3.8.____cpythonsuffix-novec.yaml | 37 -- ..._numpy1.22python3.8.____cpythonsuffix.yaml | 37 -- ...1.22python3.9.____cpythonsuffix-novec.yaml | 37 -- ..._numpy1.22python3.9.____cpythonsuffix.yaml | 37 -- ....23python3.11.____cpythonsuffix-novec.yaml | 37 -- ...numpy1.23python3.11.____cpythonsuffix.yaml | 37 -- ...22python3.10.____cpythonsuffix-novec.yaml} | 4 +- ...umpy1.22python3.10.____cpythonsuffix.yaml} | 4 +- ...1.22python3.8.____cpythonsuffix-novec.yaml | 33 -- ...2numpy1.22python3.8.____cpythonsuffix.yaml | 33 -- ...1.22python3.9.____cpythonsuffix-novec.yaml | 33 -- ...2numpy1.22python3.9.____cpythonsuffix.yaml | 33 -- ....23python3.11.____cpythonsuffix-novec.yaml | 33 -- ...numpy1.23python3.11.____cpythonsuffix.yaml | 33 -- ...1.22python3.8.____cpythonsuffix-novec.yaml | 33 -- ...enumpy1.22python3.8.____cpythonsuffix.yaml | 33 -- ...1.22python3.9.____cpythonsuffix-novec.yaml | 33 -- ...enumpy1.22python3.9.____cpythonsuffix.yaml | 33 -- ....23python3.11.____cpythonsuffix-novec.yaml | 33 -- ...numpy1.23python3.11.____cpythonsuffix.yaml | 33 -- ...22python3.10.____cpythonsuffix-novec.yaml} | 4 +- ...umpy1.22python3.10.____cpythonsuffix.yaml} | 4 +- .scripts/build_steps.sh | 90 ---- .scripts/logging_utils.sh | 4 +- .scripts/run_docker_build.sh | 105 ----- .scripts/run_osx_build.sh | 94 ---- .scripts/run_win_build.bat | 115 +++++ README.md | 436 +----------------- azure-pipelines.yml | 4 +- recipe/conda_build_config.yaml | 4 + recipe/meta.yaml | 2 +- 77 files changed, 155 insertions(+), 3635 deletions(-) delete mode 100755 .azure-pipelines/azure-pipelines-linux.yml delete mode 100755 .azure-pipelines/azure-pipelines-osx.yml delete mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml delete mode 100644 .ci_support/migrations/python311.yaml delete mode 100644 .ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix.yaml delete mode 100644 .ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix.yaml delete mode 100644 .ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix.yaml delete mode 100644 .ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix.yaml rename .ci_support/{win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml => win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml} (95%) rename .ci_support/{win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml => win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml} (95%) delete mode 100644 .ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.8.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.8.____cpythonsuffix.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.9.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.9.____cpythonsuffix.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_version11.2numpy1.23python3.11.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_version11.2numpy1.23python3.11.____cpythonsuffix.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix.yaml rename .ci_support/{win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml => win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml} (95%) rename .ci_support/{win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml => win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml} (95%) delete mode 100755 .scripts/build_steps.sh delete mode 100755 .scripts/run_docker_build.sh delete mode 100755 .scripts/run_osx_build.sh create mode 100755 .scripts/run_win_build.bat diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml deleted file mode 100755 index f57a3d9b..00000000 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ /dev/null @@ -1,187 +0,0 @@ -# This file was generated automatically from conda-smithy. To update this configuration, -# update the conda-forge.yml and/or the recipe/meta.yaml. -# -*- mode: yaml -*- - -jobs: -- job: linux - pool: - vmImage: ubuntu-latest - strategy: - matrix: - ? linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix - : CONFIG: linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec - : CONFIG: linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix - : CONFIG: linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec - : CONFIG: linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix - : CONFIG: linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec - : CONFIG: linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix - : CONFIG: linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec - : CONFIG: linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix - : CONFIG: linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec - : CONFIG: linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix - : CONFIG: linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec - : CONFIG: linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix - : CONFIG: linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec - : CONFIG: linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix - : CONFIG: linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec - : CONFIG: linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix - : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec - : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix - : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec - : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix - : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec - : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix - : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec - : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - maxParallel: 25 - timeoutInMinutes: 360 - - steps: - - script: | - sudo mkdir -p /opt/empty_dir || true - for d in \ - /opt/ghc \ - /opt/hostedtoolcache \ - /usr/lib/jvm \ - /usr/local/.ghcup \ - /usr/local/lib/android \ - /usr/local/share/powershell \ - /usr/share/dotnet \ - /usr/share/swift \ - ; do - sudo rsync --stats -a --delete /opt/empty_dir/ $d || true - done - sudo apt-get purge -y -f firefox \ - google-chrome-stable \ - microsoft-edge-stable - sudo apt-get autoremove -y >& /dev/null - sudo apt-get autoclean -y >& /dev/null - sudo docker image prune --all --force - df -h - displayName: Manage disk space - # configure qemu binfmt-misc running. This allows us to run docker containers - # embedded qemu-static - - script: | - docker run --rm --privileged multiarch/qemu-user-static:register --reset --credential yes - ls /proc/sys/fs/binfmt_misc/ - condition: not(startsWith(variables['CONFIG'], 'linux_64')) - displayName: Configure binfmt_misc - - - script: | - export CI=azure - export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME - export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME}) - if [[ "${BUILD_REASON:-}" == "PullRequest" ]]; then - export IS_PR_BUILD="True" - else - export IS_PR_BUILD="False" - fi - .scripts/run_docker_build.sh - displayName: Run docker build - env: - BINSTAR_TOKEN: $(BINSTAR_TOKEN) - FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) - STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) \ No newline at end of file diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml deleted file mode 100755 index df573779..00000000 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ /dev/null @@ -1,79 +0,0 @@ -# This file was generated automatically from conda-smithy. To update this configuration, -# update the conda-forge.yml and/or the recipe/meta.yaml. -# -*- mode: yaml -*- - -jobs: -- job: osx - pool: - vmImage: macOS-11 - strategy: - matrix: - osx_64_numpy1.22python3.10.____cpythonsuffix: - CONFIG: osx_64_numpy1.22python3.10.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - osx_64_numpy1.22python3.10.____cpythonsuffix-novec: - CONFIG: osx_64_numpy1.22python3.10.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - osx_64_numpy1.22python3.8.____cpythonsuffix: - CONFIG: osx_64_numpy1.22python3.8.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - osx_64_numpy1.22python3.8.____cpythonsuffix-novec: - CONFIG: osx_64_numpy1.22python3.8.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - osx_64_numpy1.22python3.9.____cpythonsuffix: - CONFIG: osx_64_numpy1.22python3.9.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - osx_64_numpy1.22python3.9.____cpythonsuffix-novec: - CONFIG: osx_64_numpy1.22python3.9.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - osx_64_numpy1.23python3.11.____cpythonsuffix: - CONFIG: osx_64_numpy1.23python3.11.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - osx_64_numpy1.23python3.11.____cpythonsuffix-novec: - CONFIG: osx_64_numpy1.23python3.11.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.22python3.10.____cpythonsuffix: - CONFIG: osx_arm64_numpy1.22python3.10.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec: - CONFIG: osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.22python3.8.____cpythonsuffix: - CONFIG: osx_arm64_numpy1.22python3.8.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec: - CONFIG: osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.22python3.9.____cpythonsuffix: - CONFIG: osx_arm64_numpy1.22python3.9.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec: - CONFIG: osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.23python3.11.____cpythonsuffix: - CONFIG: osx_arm64_numpy1.23python3.11.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec: - CONFIG: osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - maxParallel: 12 - timeoutInMinutes: 360 - - steps: - # TODO: Fast finish on azure pipelines? - - script: | - export CI=azure - export OSX_FORCE_SDK_DOWNLOAD="1" - export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME - export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME}) - if [[ "${BUILD_REASON:-}" == "PullRequest" ]]; then - export IS_PR_BUILD="True" - else - export IS_PR_BUILD="False" - fi - ./.scripts/run_osx_build.sh - displayName: Run OSX build - env: - BINSTAR_TOKEN: $(BINSTAR_TOKEN) - FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) - STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) \ No newline at end of file diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index 147a6398..ae034f34 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -8,61 +8,25 @@ jobs: vmImage: windows-2022 strategy: matrix: - win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix: - CONFIG: win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix + win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix: + CONFIG: win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec + win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec: + CONFIG: win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_version11.2numpy1.22python3.8.____cpythonsuffix: - CONFIG: win_64_cuda_compiler_version11.2numpy1.22python3.8.____cpythonsuffix + win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix: + CONFIG: win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_version11.2numpy1.22python3.8.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compiler_version11.2numpy1.22python3.8.____cpythonsuffix-novec + win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec: + CONFIG: win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_version11.2numpy1.22python3.9.____cpythonsuffix: - CONFIG: win_64_cuda_compiler_version11.2numpy1.22python3.9.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_version11.2numpy1.22python3.9.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compiler_version11.2numpy1.22python3.9.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_version11.2numpy1.23python3.11.____cpythonsuffix: - CONFIG: win_64_cuda_compiler_version11.2numpy1.23python3.11.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_version11.2numpy1.23python3.11.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compiler_version11.2numpy1.23python3.11.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - maxParallel: 12 timeoutInMinutes: 360 variables: CONDA_BLD_PATH: D:\\bld\\ UPLOAD_TEMP: D:\\tmp steps: + - task: PythonScript@0 displayName: 'Download Miniforge' inputs: @@ -81,55 +45,14 @@ jobs: displayName: Add conda to PATH - script: | - call activate base - mamba.exe install "python=3.10" conda-build conda pip boa conda-forge-ci-setup=3 -c conda-forge --strict-channel-priority --yes - displayName: Install conda-build - - - script: set PYTHONUNBUFFERED=1 - displayName: Set PYTHONUNBUFFERED - - # Configure the VM - - script: | - call activate base - setup_conda_rc .\ ".\recipe" .\.ci_support\%CONFIG%.yaml - displayName: conda-forge CI setup - - # Configure the VM. - - script: | - set "CI=azure" - call activate base - run_conda_forge_build_setup - displayName: conda-forge build setup - - - script: | - call activate base - if EXIST LICENSE.txt ( - copy LICENSE.txt "recipe\\recipe-scripts-license.txt" - ) - if NOT [%HOST_PLATFORM%] == [%BUILD_PLATFORM%] ( - set "EXTRA_CB_OPTIONS=%EXTRA_CB_OPTIONS% --no-test" - ) - conda.exe mambabuild "recipe" -m .ci_support\%CONFIG%.yaml --suppress-variables %EXTRA_CB_OPTIONS% - displayName: Build recipe + call ".scripts\run_win_build.bat" + displayName: Run Windows build env: PYTHONUNBUFFERED: 1 - - script: | - set "FEEDSTOCK_NAME=%BUILD_REPOSITORY_NAME:*/=%" - call activate base - validate_recipe_outputs "%FEEDSTOCK_NAME%" - displayName: Validate Recipe Outputs - - - script: | - set "GIT_BRANCH=%BUILD_SOURCEBRANCHNAME%" - set "FEEDSTOCK_NAME=%BUILD_REPOSITORY_NAME:*/=%" - set "TEMP=$(UPLOAD_TEMP)" - if not exist "%TEMP%\" md "%TEMP%" - set "TMP=%TEMP%" - call activate base - upload_package --validate --feedstock-name="%FEEDSTOCK_NAME%" .\ ".\recipe" .ci_support\%CONFIG%.yaml - displayName: Upload package - env: + CONFIG: $(CONFIG) + CI: azure + UPLOAD_PACKAGES: $(UPLOAD_PACKAGES) + UPLOAD_TEMP: $(UPLOAD_TEMP) BINSTAR_TOKEN: $(BINSTAR_TOKEN) FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) - STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) - condition: and(succeeded(), not(eq(variables['UPLOAD_PACKAGES'], 'False')), not(eq(variables['Build.Reason'], 'PullRequest'))) \ No newline at end of file + STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) \ No newline at end of file diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml deleted file mode 100644 index 533e5dc0..00000000 --- a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,45 +0,0 @@ -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- -novec -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml deleted file mode 100644 index 2431bea3..00000000 --- a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml +++ /dev/null @@ -1,45 +0,0 @@ -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- '' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml deleted file mode 100644 index 7c7b6439..00000000 --- a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,45 +0,0 @@ -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- -novec -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml deleted file mode 100644 index 7310631c..00000000 --- a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml +++ /dev/null @@ -1,45 +0,0 @@ -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- '' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml deleted file mode 100644 index 4f91c979..00000000 --- a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,45 +0,0 @@ -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- -novec -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml deleted file mode 100644 index 128f5b92..00000000 --- a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml +++ /dev/null @@ -1,45 +0,0 @@ -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- '' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml deleted file mode 100644 index 02ab6f90..00000000 --- a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,45 +0,0 @@ -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 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- -novec -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml deleted file mode 100644 index c21a2f97..00000000 --- a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml +++ /dev/null @@ -1,45 +0,0 @@ -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 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- '' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml deleted file mode 100644 index 928f757f..00000000 --- a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,45 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos6 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- -novec -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml deleted file mode 100644 index 6731d780..00000000 --- a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml +++ /dev/null @@ -1,45 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos6 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- '' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml deleted file mode 100644 index 1cfc914c..00000000 --- a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,45 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos6 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- -novec -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml deleted file mode 100644 index 533a3560..00000000 --- a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml +++ /dev/null @@ -1,45 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos6 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- '' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml deleted file mode 100644 index 74e2cd84..00000000 --- a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,45 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos6 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- -novec -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml deleted file mode 100644 index 53f367f0..00000000 --- a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml +++ /dev/null @@ -1,45 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos6 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- '' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml deleted file mode 100644 index e5cf9a59..00000000 --- a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,45 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos6 -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 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- -novec -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml deleted file mode 100644 index 0bce1256..00000000 --- a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml +++ /dev/null @@ -1,45 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos6 -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 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- '' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml deleted file mode 100644 index 1c945f88..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- -novec -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml deleted file mode 100644 index 50389d56..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- '' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml deleted file mode 100644 index 43530363..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- -novec -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml deleted file mode 100644 index c6c894ca..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- '' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml deleted file mode 100644 index 3f8788a1..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- -novec -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml deleted file mode 100644 index da23c9d5..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- '' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml deleted file mode 100644 index 69ac00b7..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -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 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- -novec -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml deleted file mode 100644 index 96c0948e..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -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 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- '' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml deleted file mode 100644 index 6a2518c1..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- -novec -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml deleted file mode 100644 index ae395d9c..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- '' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml deleted file mode 100644 index 385a27d9..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- -novec -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml deleted file mode 100644 index f9474064..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- '' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml deleted file mode 100644 index 8f3f4a42..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- -novec -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml deleted file mode 100644 index 5c8cb959..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- '' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml deleted file mode 100644 index c8446f8c..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -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 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- -novec -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml deleted file mode 100644 index 93ac4d28..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -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 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- '' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/migrations/python311.yaml b/.ci_support/migrations/python311.yaml deleted file mode 100644 index be186d2b..00000000 --- a/.ci_support/migrations/python311.yaml +++ /dev/null @@ -1,37 +0,0 @@ -migrator_ts: 1666686085 -__migrator: - migration_number: 1 - operation: key_add - primary_key: python - ordering: - python: - - 3.6.* *_cpython - - 3.7.* *_cpython - - 3.8.* *_cpython - - 3.9.* *_cpython - - 3.10.* *_cpython - - 3.11.* *_cpython # new entry - - 3.6.* *_73_pypy - - 3.7.* *_73_pypy - - 3.8.* *_73_pypy - - 3.9.* *_73_pypy - paused: false - longterm: True - pr_limit: 30 - max_solver_attempts: 12 # this will make the bot retry "not solvable" stuff 12 times - exclude: - # this shouldn't attempt to modify the python feedstocks - - python - - pypy3.6 - - pypy-meta - - cross-python - - python_abi - exclude_pinned_pkgs: false - -python: - - 3.11.* *_cpython -# additional entries to add for zip_keys -numpy: - - 1.23 -python_impl: - - cpython diff --git a/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix-novec.yaml deleted file mode 100644 index 1c2b252b..00000000 --- a/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,39 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.14' -MACOSX_SDK_VERSION: -- '10.14' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- -novec -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix.yaml deleted file mode 100644 index 419ba80a..00000000 --- a/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix.yaml +++ /dev/null @@ -1,39 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.14' -MACOSX_SDK_VERSION: -- '10.14' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- '' -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix-novec.yaml deleted file mode 100644 index 8e7caec3..00000000 --- a/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,39 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.14' -MACOSX_SDK_VERSION: -- '10.14' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- -novec -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix.yaml deleted file mode 100644 index cba84ef9..00000000 --- a/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix.yaml +++ /dev/null @@ -1,39 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.14' -MACOSX_SDK_VERSION: -- '10.14' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- '' -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix-novec.yaml deleted file mode 100644 index 61e30ec5..00000000 --- a/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,39 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.14' -MACOSX_SDK_VERSION: -- '10.14' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- -novec -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix.yaml deleted file mode 100644 index 6554f01a..00000000 --- a/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix.yaml +++ /dev/null @@ -1,39 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.14' -MACOSX_SDK_VERSION: -- '10.14' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- '' -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix-novec.yaml deleted file mode 100644 index be457ec6..00000000 --- a/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,39 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.14' -MACOSX_SDK_VERSION: -- '10.14' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- -novec -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix.yaml deleted file mode 100644 index 666a870b..00000000 --- a/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix.yaml +++ /dev/null @@ -1,39 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.14' -MACOSX_SDK_VERSION: -- '10.14' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- '' -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec.yaml deleted file mode 100644 index 6d71dc3b..00000000 --- a/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,37 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- -novec -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix.yaml deleted file mode 100644 index 27d6b9a1..00000000 --- a/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix.yaml +++ /dev/null @@ -1,37 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- '' -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec.yaml deleted file mode 100644 index 2bb99115..00000000 --- a/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,37 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- -novec -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix.yaml deleted file mode 100644 index 7b704867..00000000 --- a/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix.yaml +++ /dev/null @@ -1,37 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- '' -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec.yaml deleted file mode 100644 index 6374c418..00000000 --- a/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,37 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- -novec -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix.yaml deleted file mode 100644 index 278721d9..00000000 --- a/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix.yaml +++ /dev/null @@ -1,37 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- '' -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec.yaml deleted file mode 100644 index 78b7a25f..00000000 --- a/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,37 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- -novec -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix.yaml deleted file mode 100644 index 47698dd2..00000000 --- a/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix.yaml +++ /dev/null @@ -1,37 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- '' -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml similarity index 95% rename from .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml rename to .ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml index e70cd1bd..ace50a79 100644 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml +++ b/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -1,5 +1,5 @@ c_compiler: -- vs2019 +- vs2023 channel_sources: - conda-forge channel_targets: @@ -11,7 +11,7 @@ cuda_compiler_version: cudnn: - '8' cxx_compiler: -- vs2019 +- vs2023 numpy: - '1.22' pin_run_as_build: diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml similarity index 95% rename from .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml rename to .ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml index 64327fd0..7413cd9f 100644 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml +++ b/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml @@ -1,5 +1,5 @@ c_compiler: -- vs2019 +- vs2023 channel_sources: - conda-forge channel_targets: @@ -11,7 +11,7 @@ cuda_compiler_version: cudnn: - '8' cxx_compiler: -- vs2019 +- vs2023 numpy: - '1.22' pin_run_as_build: diff --git a/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.8.____cpythonsuffix-novec.yaml deleted file mode 100644 index 5a039b78..00000000 --- a/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.8.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,33 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- '11.2' -cudnn: -- '8' -cxx_compiler: -- vs2019 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- -novec -target_platform: -- win-64 -zip_keys: -- - cuda_compiler - - cuda_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.8.____cpythonsuffix.yaml deleted file mode 100644 index 504e3e43..00000000 --- a/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.8.____cpythonsuffix.yaml +++ /dev/null @@ -1,33 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- '11.2' -cudnn: -- '8' -cxx_compiler: -- vs2019 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- '' -target_platform: -- win-64 -zip_keys: -- - cuda_compiler - - cuda_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.9.____cpythonsuffix-novec.yaml deleted file mode 100644 index 7837962e..00000000 --- a/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.9.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,33 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- '11.2' -cudnn: -- '8' -cxx_compiler: -- vs2019 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- -novec -target_platform: -- win-64 -zip_keys: -- - cuda_compiler - - cuda_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.9.____cpythonsuffix.yaml deleted file mode 100644 index 2b0ec18e..00000000 --- a/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.9.____cpythonsuffix.yaml +++ /dev/null @@ -1,33 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- '11.2' -cudnn: -- '8' -cxx_compiler: -- vs2019 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- '' -target_platform: -- win-64 -zip_keys: -- - cuda_compiler - - cuda_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_version11.2numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_version11.2numpy1.23python3.11.____cpythonsuffix-novec.yaml deleted file mode 100644 index 24edb803..00000000 --- a/.ci_support/win_64_cuda_compiler_version11.2numpy1.23python3.11.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,33 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- '11.2' -cudnn: -- '8' -cxx_compiler: -- vs2019 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- -novec -target_platform: -- win-64 -zip_keys: -- - cuda_compiler - - cuda_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_version11.2numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_version11.2numpy1.23python3.11.____cpythonsuffix.yaml deleted file mode 100644 index 0208f786..00000000 --- a/.ci_support/win_64_cuda_compiler_version11.2numpy1.23python3.11.____cpythonsuffix.yaml +++ /dev/null @@ -1,33 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- '11.2' -cudnn: -- '8' -cxx_compiler: -- vs2019 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- '' -target_platform: -- win-64 -zip_keys: -- - cuda_compiler - - cuda_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec.yaml deleted file mode 100644 index e6a4c99a..00000000 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,33 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- '8' -cxx_compiler: -- vs2019 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- -novec -target_platform: -- win-64 -zip_keys: -- - cuda_compiler - - cuda_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix.yaml deleted file mode 100644 index ac7d69b2..00000000 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix.yaml +++ /dev/null @@ -1,33 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- '8' -cxx_compiler: -- vs2019 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- '' -target_platform: -- win-64 -zip_keys: -- - cuda_compiler - - cuda_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec.yaml deleted file mode 100644 index ec80e6c6..00000000 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,33 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- '8' -cxx_compiler: -- vs2019 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- -novec -target_platform: -- win-64 -zip_keys: -- - cuda_compiler - - cuda_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix.yaml deleted file mode 100644 index 360d1c55..00000000 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix.yaml +++ /dev/null @@ -1,33 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- '8' -cxx_compiler: -- vs2019 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- '' -target_platform: -- win-64 -zip_keys: -- - cuda_compiler - - cuda_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec.yaml deleted file mode 100644 index 29d5db38..00000000 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,33 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- '8' -cxx_compiler: -- vs2019 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- -novec -target_platform: -- win-64 -zip_keys: -- - cuda_compiler - - cuda_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix.yaml deleted file mode 100644 index cbc609ec..00000000 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix.yaml +++ /dev/null @@ -1,33 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- '8' -cxx_compiler: -- vs2019 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- '' -target_platform: -- win-64 -zip_keys: -- - cuda_compiler - - cuda_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml similarity index 95% rename from .ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml rename to .ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml index e6a8c5e2..09492737 100644 --- a/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml +++ b/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -1,5 +1,5 @@ c_compiler: -- vs2019 +- vs2023 channel_sources: - conda-forge channel_targets: @@ -11,7 +11,7 @@ cuda_compiler_version: cudnn: - '8' cxx_compiler: -- vs2019 +- vs2023 numpy: - '1.22' pin_run_as_build: diff --git a/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml similarity index 95% rename from .ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml rename to .ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml index bde9b1ca..db313618 100644 --- a/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml +++ b/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml @@ -1,5 +1,5 @@ c_compiler: -- vs2019 +- vs2023 channel_sources: - conda-forge channel_targets: @@ -11,7 +11,7 @@ cuda_compiler_version: cudnn: - '8' cxx_compiler: -- vs2019 +- vs2023 numpy: - '1.22' pin_run_as_build: diff --git a/.scripts/build_steps.sh b/.scripts/build_steps.sh deleted file mode 100755 index a6b09f6b..00000000 --- a/.scripts/build_steps.sh +++ /dev/null @@ -1,90 +0,0 @@ -#!/usr/bin/env bash - -# PLEASE NOTE: This script has been automatically generated by conda-smithy. Any changes here -# will be lost next time ``conda smithy rerender`` is run. If you would like to make permanent -# changes to this script, consider a proposal to conda-smithy so that other feedstocks can also -# benefit from the improvement. - -# -*- mode: jinja-shell -*- - -set -xeuo pipefail -export FEEDSTOCK_ROOT="${FEEDSTOCK_ROOT:-/home/conda/feedstock_root}" -source ${FEEDSTOCK_ROOT}/.scripts/logging_utils.sh - - -( endgroup "Start Docker" ) 2> /dev/null - -( startgroup "Configuring conda" ) 2> /dev/null - -export PYTHONUNBUFFERED=1 -export RECIPE_ROOT="${RECIPE_ROOT:-/home/conda/recipe_root}" -export CI_SUPPORT="${FEEDSTOCK_ROOT}/.ci_support" -export CONFIG_FILE="${CI_SUPPORT}/${CONFIG}.yaml" - -cat >~/.condarc < /dev/null - -if [[ -f "${FEEDSTOCK_ROOT}/LICENSE.txt" ]]; then - cp "${FEEDSTOCK_ROOT}/LICENSE.txt" "${RECIPE_ROOT}/recipe-scripts-license.txt" -fi - -if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then - if [[ "x${BUILD_OUTPUT_ID:-}" != "x" ]]; then - EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --output-id ${BUILD_OUTPUT_ID}" - fi - conda debug "${RECIPE_ROOT}" -m "${CI_SUPPORT}/${CONFIG}.yaml" \ - ${EXTRA_CB_OPTIONS:-} \ - --clobber-file "${CI_SUPPORT}/clobber_${CONFIG}.yaml" - - # Drop into an interactive shell - /bin/bash -else - conda mambabuild "${RECIPE_ROOT}" -m "${CI_SUPPORT}/${CONFIG}.yaml" \ - --suppress-variables ${EXTRA_CB_OPTIONS:-} \ - --clobber-file "${CI_SUPPORT}/clobber_${CONFIG}.yaml" - ( startgroup "Validating outputs" ) 2> /dev/null - - validate_recipe_outputs "${FEEDSTOCK_NAME}" - - ( endgroup "Validating outputs" ) 2> /dev/null - - ( startgroup "Uploading packages" ) 2> /dev/null - - if [[ "${UPLOAD_PACKAGES}" != "False" ]] && [[ "${IS_PR_BUILD}" == "False" ]]; then - upload_package --validate --feedstock-name="${FEEDSTOCK_NAME}" "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}" - fi - - ( endgroup "Uploading packages" ) 2> /dev/null -fi - -( startgroup "Final checks" ) 2> /dev/null - -touch "${FEEDSTOCK_ROOT}/build_artifacts/conda-forge-build-done-${CONFIG}" \ No newline at end of file diff --git a/.scripts/logging_utils.sh b/.scripts/logging_utils.sh index 57bc95c2..aff009f0 100644 --- a/.scripts/logging_utils.sh +++ b/.scripts/logging_utils.sh @@ -12,7 +12,7 @@ function startgroup { echo "##[group]$1";; travis ) echo "$1" - echo -en 'travis_fold:start:'"${1// /}"'\\r';; + echo -en 'travis_fold:start:'"${1// /}"'\r';; github_actions ) echo "::group::$1";; * ) @@ -28,7 +28,7 @@ function endgroup { azure ) echo "##[endgroup]";; travis ) - echo -en 'travis_fold:end:'"${1// /}"'\\r';; + echo -en 'travis_fold:end:'"${1// /}"'\r';; github_actions ) echo "::endgroup::";; esac diff --git a/.scripts/run_docker_build.sh b/.scripts/run_docker_build.sh deleted file mode 100755 index 92362398..00000000 --- a/.scripts/run_docker_build.sh +++ /dev/null @@ -1,105 +0,0 @@ -#!/usr/bin/env bash - -# PLEASE NOTE: This script has been automatically generated by conda-smithy. Any changes here -# will be lost next time ``conda smithy rerender`` is run. If you would like to make permanent -# changes to this script, consider a proposal to conda-smithy so that other feedstocks can also -# benefit from the improvement. - -source .scripts/logging_utils.sh - -( startgroup "Configure Docker" ) 2> /dev/null - -set -xeo pipefail - -THISDIR="$( cd "$( dirname "$0" )" >/dev/null && pwd )" -PROVIDER_DIR="$(basename $THISDIR)" - -FEEDSTOCK_ROOT="$( cd "$( dirname "$0" )/.." >/dev/null && pwd )" -RECIPE_ROOT="${FEEDSTOCK_ROOT}/recipe" - -if [ -z ${FEEDSTOCK_NAME} ]; then - export FEEDSTOCK_NAME=$(basename ${FEEDSTOCK_ROOT}) -fi - -docker info - -# In order for the conda-build process in the container to write to the mounted -# volumes, we need to run with the same id as the host machine, which is -# normally the owner of the mounted volumes, or at least has write permission -export HOST_USER_ID=$(id -u) -# Check if docker-machine is being used (normally on OSX) and get the uid from -# the VM -if hash docker-machine 2> /dev/null && docker-machine active > /dev/null; then - export HOST_USER_ID=$(docker-machine ssh $(docker-machine active) id -u) -fi - -ARTIFACTS="$FEEDSTOCK_ROOT/build_artifacts" - -if [ -z "$CONFIG" ]; then - set +x - FILES=`ls .ci_support/linux_*` - CONFIGS="" - for file in $FILES; do - CONFIGS="${CONFIGS}'${file:12:-5}' or "; - done - echo "Need to set CONFIG env variable. Value can be one of ${CONFIGS:0:-4}" - exit 1 -fi - -if [ -z "${DOCKER_IMAGE}" ]; then - SHYAML_INSTALLED="$(shyaml -h || echo NO)" - if [ "${SHYAML_INSTALLED}" == "NO" ]; then - echo "WARNING: DOCKER_IMAGE variable not set and shyaml not installed. Trying to parse with coreutils" - DOCKER_IMAGE=$(cat .ci_support/${CONFIG}.yaml | grep '^docker_image:$' -A 1 | tail -n 1 | cut -b 3-) - if [ "${DOCKER_IMAGE}" = "" ]; then - echo "No docker_image entry found in ${CONFIG}. Falling back to quay.io/condaforge/linux-anvil-comp7" - DOCKER_IMAGE="quay.io/condaforge/linux-anvil-comp7" - fi - else - DOCKER_IMAGE="$(cat "${FEEDSTOCK_ROOT}/.ci_support/${CONFIG}.yaml" | shyaml get-value docker_image.0 quay.io/condaforge/linux-anvil-comp7 )" - fi -fi - -mkdir -p "$ARTIFACTS" -DONE_CANARY="$ARTIFACTS/conda-forge-build-done-${CONFIG}" -rm -f "$DONE_CANARY" - -# Allow people to specify extra default arguments to `docker run` (e.g. `--rm`) -DOCKER_RUN_ARGS="${CONDA_FORGE_DOCKER_RUN_ARGS}" -if [ -z "${CI}" ]; then - DOCKER_RUN_ARGS="-it ${DOCKER_RUN_ARGS}" -fi - -( endgroup "Configure Docker" ) 2> /dev/null - -( startgroup "Start Docker" ) 2> /dev/null - -export UPLOAD_PACKAGES="${UPLOAD_PACKAGES:-True}" -export IS_PR_BUILD="${IS_PR_BUILD:-False}" -docker pull "${DOCKER_IMAGE}" -docker run ${DOCKER_RUN_ARGS} \ - -v "${RECIPE_ROOT}":/home/conda/recipe_root:rw,z,delegated \ - -v "${FEEDSTOCK_ROOT}":/home/conda/feedstock_root:rw,z,delegated \ - -e CONFIG \ - -e HOST_USER_ID \ - -e UPLOAD_PACKAGES \ - -e IS_PR_BUILD \ - -e GIT_BRANCH \ - -e UPLOAD_ON_BRANCH \ - -e CI \ - -e FEEDSTOCK_NAME \ - -e CPU_COUNT \ - -e BUILD_WITH_CONDA_DEBUG \ - -e BUILD_OUTPUT_ID \ - -e BINSTAR_TOKEN \ - -e FEEDSTOCK_TOKEN \ - -e STAGING_BINSTAR_TOKEN \ - "${DOCKER_IMAGE}" \ - bash \ - "/home/conda/feedstock_root/${PROVIDER_DIR}/build_steps.sh" - -# verify that the end of the script was reached -test -f "$DONE_CANARY" - -# This closes the last group opened in `build_steps.sh` -( endgroup "Final checks" ) 2> /dev/null \ No newline at end of file diff --git a/.scripts/run_osx_build.sh b/.scripts/run_osx_build.sh deleted file mode 100755 index 3969edf3..00000000 --- a/.scripts/run_osx_build.sh +++ /dev/null @@ -1,94 +0,0 @@ -#!/usr/bin/env bash - -# -*- mode: jinja-shell -*- - -source .scripts/logging_utils.sh - -set -xe - -MINIFORGE_HOME=${MINIFORGE_HOME:-${HOME}/miniforge3} - -( startgroup "Installing a fresh version of Miniforge" ) 2> /dev/null - -MINIFORGE_URL="https://github.com/conda-forge/miniforge/releases/latest/download" -MINIFORGE_FILE="Mambaforge-MacOSX-$(uname -m).sh" -curl -L -O "${MINIFORGE_URL}/${MINIFORGE_FILE}" -rm -rf ${MINIFORGE_HOME} -bash $MINIFORGE_FILE -b -p ${MINIFORGE_HOME} - -( endgroup "Installing a fresh version of Miniforge" ) 2> /dev/null - -( startgroup "Configuring conda" ) 2> /dev/null - -source ${MINIFORGE_HOME}/etc/profile.d/conda.sh -conda activate base - -mamba install --update-specs --quiet --yes --channel conda-forge \ - conda-build pip boa conda-forge-ci-setup=3 -mamba update --update-specs --yes --quiet --channel conda-forge \ - conda-build pip boa conda-forge-ci-setup=3 - - - -echo -e "\n\nSetting up the condarc and mangling the compiler." -setup_conda_rc ./ ./recipe ./.ci_support/${CONFIG}.yaml - -if [[ "${CI:-}" != "" ]]; then - mangle_compiler ./ ./recipe .ci_support/${CONFIG}.yaml -fi - -if [[ "${CI:-}" != "" ]]; then - echo -e "\n\nMangling homebrew in the CI to avoid conflicts." - /usr/bin/sudo mangle_homebrew - /usr/bin/sudo -k -else - echo -e "\n\nNot mangling homebrew as we are not running in CI" -fi - -echo -e "\n\nRunning the build setup script." -source run_conda_forge_build_setup - - - -( endgroup "Configuring conda" ) 2> /dev/null - -echo -e "\n\nMaking the build clobber file" -make_build_number ./ ./recipe ./.ci_support/${CONFIG}.yaml - -if [[ -f LICENSE.txt ]]; then - cp LICENSE.txt "recipe/recipe-scripts-license.txt" -fi - -if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then - if [[ "x${BUILD_OUTPUT_ID:-}" != "x" ]]; then - EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --output-id ${BUILD_OUTPUT_ID}" - fi - conda debug ./recipe -m ./.ci_support/${CONFIG}.yaml \ - ${EXTRA_CB_OPTIONS:-} \ - --clobber-file ./.ci_support/clobber_${CONFIG}.yaml - - # Drop into an interactive shell - /bin/bash -else - - if [[ "${HOST_PLATFORM}" != "${BUILD_PLATFORM}" ]]; then - EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --no-test" - fi - - conda mambabuild ./recipe -m ./.ci_support/${CONFIG}.yaml \ - --suppress-variables ${EXTRA_CB_OPTIONS:-} \ - --clobber-file ./.ci_support/clobber_${CONFIG}.yaml - ( startgroup "Validating outputs" ) 2> /dev/null - - validate_recipe_outputs "${FEEDSTOCK_NAME}" - - ( endgroup "Validating outputs" ) 2> /dev/null - - ( startgroup "Uploading packages" ) 2> /dev/null - - if [[ "${UPLOAD_PACKAGES}" != "False" ]] && [[ "${IS_PR_BUILD}" == "False" ]]; then - upload_package --validate --feedstock-name="${FEEDSTOCK_NAME}" ./ ./recipe ./.ci_support/${CONFIG}.yaml - fi - - ( endgroup "Uploading packages" ) 2> /dev/null -fi \ No newline at end of file diff --git a/.scripts/run_win_build.bat b/.scripts/run_win_build.bat new file mode 100755 index 00000000..07d34456 --- /dev/null +++ b/.scripts/run_win_build.bat @@ -0,0 +1,115 @@ +:: PLEASE NOTE: This script has been automatically generated by conda-smithy. Any changes here +:: will be lost next time ``conda smithy rerender`` is run. If you would like to make permanent +:: changes to this script, consider a proposal to conda-smithy so that other feedstocks can also +:: benefit from the improvement. + +:: Note: we assume a Miniforge installation is available + +:: INPUTS (required environment variables) +:: CONFIG: name of the .ci_support/*.yaml file for this job +:: CI: azure, github_actions, or unset +:: UPLOAD_PACKAGES: true or false +:: UPLOAD_ON_BRANCH: true or false + +setlocal enableextensions enabledelayedexpansion + +call :start_group "Configuring conda" + +:: Activate the base conda environment +call activate base + +:: Provision the necessary dependencies to build the recipe later +echo Installing dependencies +mamba.exe install "python=3.10" pip mamba conda-build boa conda-forge-ci-setup=3 -c conda-forge --strict-channel-priority --yes +if !errorlevel! neq 0 exit /b !errorlevel! + +:: Set basic configuration +echo Setting up configuration +setup_conda_rc .\ ".\recipe" .\.ci_support\%CONFIG%.yaml +if !errorlevel! neq 0 exit /b !errorlevel! +echo Running build setup +CALL run_conda_forge_build_setup + + +if !errorlevel! neq 0 exit /b !errorlevel! + +if EXIST LICENSE.txt ( + echo Copying feedstock license + copy LICENSE.txt "recipe\\recipe-scripts-license.txt" +) +if NOT [%HOST_PLATFORM%] == [%BUILD_PLATFORM%] ( + set "EXTRA_CB_OPTIONS=%EXTRA_CB_OPTIONS% --no-test" +) + +call :end_group + +:: Build the recipe +echo Building recipe +conda.exe mambabuild "recipe" -m .ci_support\%CONFIG%.yaml --suppress-variables %EXTRA_CB_OPTIONS% +if !errorlevel! neq 0 exit /b !errorlevel! + +:: Prepare some environment variables for the upload step +if /i "%CI%" == "github_actions" ( + set "FEEDSTOCK_NAME=%GITHUB_REPOSITORY:*/=%" + set "GIT_BRANCH=%GITHUB_REF:refs/heads/=%" + if /i "%GITHUB_EVENT_NAME%" == "pull_request" ( + set "IS_PR_BUILD=True" + ) else ( + set "IS_PR_BUILD=False" + ) + set "TEMP=%RUNNER_TEMP%" +) +if /i "%CI%" == "azure" ( + set "FEEDSTOCK_NAME=%BUILD_REPOSITORY_NAME:*/=%" + set "GIT_BRANCH=%BUILD_SOURCEBRANCHNAME%" + if /i "%BUILD_REASON%" == "PullRequest" ( + set "IS_PR_BUILD=True" + ) else ( + set "IS_PR_BUILD=False" + ) + set "TEMP=%UPLOAD_TEMP%" +) + +:: Validate +call :start_group "Validating outputs" +validate_recipe_outputs "%FEEDSTOCK_NAME%" +if !errorlevel! neq 0 exit /b !errorlevel! +call :end_group + +if /i "%UPLOAD_PACKAGES%" == "true" ( + if /i "%IS_PR_BUILD%" == "false" ( + call :start_group "Uploading packages" + if not exist "%TEMP%\" md "%TEMP%" + set "TMP=%TEMP%" + upload_package --validate --feedstock-name="%FEEDSTOCK_NAME%" .\ ".\recipe" .ci_support\%CONFIG%.yaml + if !errorlevel! neq 0 exit /b !errorlevel! + call :end_group + ) +) + +exit + +:: Logging subroutines + +:start_group +if /i "%CI%" == "github_actions" ( + echo ::group::%~1 + exit /b +) +if /i "%CI%" == "azure" ( + echo ##[group]%~1 + exit /b +) +echo %~1 +exit /b + +:end_group +if /i "%CI%" == "github_actions" ( + echo ::endgroup:: + exit /b +) +if /i "%CI%" == "azure" ( + echo ##[endgroup] + exit /b +) +exit /b \ No newline at end of file diff --git a/README.md b/README.md index 1ab6d29c..b2b57fc9 100644 --- a/README.md +++ b/README.md @@ -27,451 +27,31 @@ Current build status - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6b346f50..93cf692b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -3,6 +3,4 @@ # -*- mode: yaml -*- jobs: - - template: ./.azure-pipelines/azure-pipelines-linux.yml - - template: ./.azure-pipelines/azure-pipelines-win.yml - - template: ./.azure-pipelines/azure-pipelines-osx.yml \ No newline at end of file + - template: ./.azure-pipelines/azure-pipelines-win.yml \ No newline at end of file diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml index 20d42575..fc05a779 100644 --- a/recipe/conda_build_config.yaml +++ b/recipe/conda_build_config.yaml @@ -13,3 +13,7 @@ docker_image: # [linux64] - quay.io/condaforge/linux-anvil-cos7-x86_64 # [linux64] cdt_name: # [linux64] - cos7 # [linux64] +c_compiler: # [win] + - vs2023 # [win] +cxx_compiler: # [win] + - vs2023 # [win] diff --git a/recipe/meta.yaml b/recipe/meta.yaml index e46746ef..f20855a8 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -21,7 +21,7 @@ source: build: number: 0 # Since 1.11, power9 seems to be required. - skip: true # [ppc64le or (cuda_compiler_version == "10.2" or cuda_compiler_version == "11.0" or cuda_compiler_version == "11.1")] + skip: true # [ppc64le or (cuda_compiler_version == "10.2" or cuda_compiler_version == "11.0" or cuda_compiler_version == "11.1" or py!=310 or unix)] string: py{{ CONDA_PY }}h{{ PKG_HASH }}_{{ PKG_BUILDNUM }}_{{ build_ext }} ignore_run_exports_from: - zlib From ece520e722dfb909efd66ce2496efe40fe7eac49 Mon Sep 17 00:00:00 2001 From: Christian Bourjau Date: Mon, 25 Sep 2023 15:55:21 +0200 Subject: [PATCH 05/12] Use vs2022 on Windows --- .azure-pipelines/azure-pipelines-win.yml | 16 ++++++++-------- ...y1.22python3.10.____cpythonsuffix-novec.yaml} | 4 ++-- ....2numpy1.22python3.10.____cpythonsuffix.yaml} | 4 ++-- ...y1.22python3.10.____cpythonsuffix-novec.yaml} | 4 ++-- ...nenumpy1.22python3.10.____cpythonsuffix.yaml} | 4 ++-- README.md | 16 ++++++++-------- recipe/conda_build_config.yaml | 4 ++-- 7 files changed, 26 insertions(+), 26 deletions(-) rename .ci_support/{win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml => win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml} (95%) rename .ci_support/{win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml => win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml} (95%) rename .ci_support/{win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml => win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml} (95%) rename .ci_support/{win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml => win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml} (95%) diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index ae034f34..892b0760 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -8,17 +8,17 @@ jobs: vmImage: windows-2022 strategy: matrix: - win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix: - CONFIG: win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix + win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix: + CONFIG: win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix UPLOAD_PACKAGES: 'True' - win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec + win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec: + CONFIG: win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec UPLOAD_PACKAGES: 'True' - win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix: - CONFIG: win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix + win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix UPLOAD_PACKAGES: 'True' - win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec + win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 variables: diff --git a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml similarity index 95% rename from .ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml rename to .ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml index 09492737..57250e7b 100644 --- a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml +++ b/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -1,5 +1,5 @@ c_compiler: -- vs2023 +- vs2022 channel_sources: - conda-forge channel_targets: @@ -11,7 +11,7 @@ cuda_compiler_version: cudnn: - '8' cxx_compiler: -- vs2023 +- vs2022 numpy: - '1.22' pin_run_as_build: diff --git a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml similarity index 95% rename from .ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml rename to .ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml index db313618..efd58bd6 100644 --- a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml +++ b/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml @@ -1,5 +1,5 @@ c_compiler: -- vs2023 +- vs2022 channel_sources: - conda-forge channel_targets: @@ -11,7 +11,7 @@ cuda_compiler_version: cudnn: - '8' cxx_compiler: -- vs2023 +- vs2022 numpy: - '1.22' pin_run_as_build: diff --git a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml similarity index 95% rename from .ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml rename to .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml index ace50a79..0961044c 100644 --- a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -1,5 +1,5 @@ c_compiler: -- vs2023 +- vs2022 channel_sources: - conda-forge channel_targets: @@ -11,7 +11,7 @@ cuda_compiler_version: cudnn: - '8' cxx_compiler: -- vs2023 +- vs2022 numpy: - '1.22' pin_run_as_build: diff --git a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml similarity index 95% rename from .ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml rename to .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml index 7413cd9f..3720e3c7 100644 --- a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml @@ -1,5 +1,5 @@ c_compiler: -- vs2023 +- vs2022 channel_sources: - conda-forge channel_targets: @@ -11,7 +11,7 @@ cuda_compiler_version: cudnn: - '8' cxx_compiler: -- vs2023 +- vs2022 numpy: - '1.22' pin_run_as_build: diff --git a/README.md b/README.md index b2b57fc9..8e082f5a 100644 --- a/README.md +++ b/README.md @@ -27,31 +27,31 @@ Current build status
VariantStatus
linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffixwin_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix - variant + variant
linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novecwin_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec - variant + variant
linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffixwin_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix - variant + variant
linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novecwin_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec - variant - -
linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix - - variant - -
linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec - - variant - -
linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix - - variant - -
linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec - - variant - -
linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix - - variant - -
linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec - - variant - -
linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix - - variant - -
linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec - - variant - -
linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix - - variant - -
linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec - - variant - -
linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix - - variant - -
linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec - - variant - -
linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix - - variant - -
linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec - - variant - -
linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix - - variant - -
linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec - - variant - -
linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix - - variant - -
linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec - - variant - -
linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix - - variant - -
linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec - - variant - -
linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix - - variant - -
linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec - - variant - -
linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix - - variant - -
linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec - - variant - -
linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix - - variant - -
linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec - - variant - -
linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix - - variant - -
linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec - - variant - -
osx_64_numpy1.22python3.10.____cpythonsuffix - - variant - -
osx_64_numpy1.22python3.10.____cpythonsuffix-novec - - variant - -
osx_64_numpy1.22python3.8.____cpythonsuffix - - variant - -
osx_64_numpy1.22python3.8.____cpythonsuffix-novec - - variant - -
osx_64_numpy1.22python3.9.____cpythonsuffix - - variant - -
osx_64_numpy1.22python3.9.____cpythonsuffix-novec - - variant - -
osx_64_numpy1.23python3.11.____cpythonsuffix - - variant - -
osx_64_numpy1.23python3.11.____cpythonsuffix-novec - - variant - -
osx_arm64_numpy1.22python3.10.____cpythonsuffix - - variant - -
osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec - - variant - -
osx_arm64_numpy1.22python3.8.____cpythonsuffix - - variant - -
osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec - - variant - -
osx_arm64_numpy1.22python3.9.____cpythonsuffix - - variant - -
osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec - - variant - -
osx_arm64_numpy1.23python3.11.____cpythonsuffix - - variant - -
osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec - - variant - -
win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix - - variant - -
win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec - - variant - -
win_64_cuda_compiler_version11.2numpy1.22python3.8.____cpythonsuffix - - variant - -
win_64_cuda_compiler_version11.2numpy1.22python3.8.____cpythonsuffix-novec - - variant - -
win_64_cuda_compiler_version11.2numpy1.22python3.9.____cpythonsuffix - - variant - -
win_64_cuda_compiler_version11.2numpy1.22python3.9.____cpythonsuffix-novec - - variant - -
win_64_cuda_compiler_version11.2numpy1.23python3.11.____cpythonsuffix - - variant - -
win_64_cuda_compiler_version11.2numpy1.23python3.11.____cpythonsuffix-novec - - variant - -
win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix - - variant - -
win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec - - variant - -
win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix - - variant - -
win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec - - variant - -
win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix - - variant - -
win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec - - variant - -
win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix - - variant - -
win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec - - variant + variant
- + - + - + - + diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml index fc05a779..b184880b 100644 --- a/recipe/conda_build_config.yaml +++ b/recipe/conda_build_config.yaml @@ -14,6 +14,6 @@ docker_image: # [linux64] cdt_name: # [linux64] - cos7 # [linux64] c_compiler: # [win] - - vs2023 # [win] + - vs2022 # [win] cxx_compiler: # [win] - - vs2023 # [win] + - vs2022 # [win] From df5a11162175ad5cd0a1f9dd26960a8f1cd021dc Mon Sep 17 00:00:00 2001 From: Christian Bourjau Date: Mon, 25 Sep 2023 18:41:36 +0200 Subject: [PATCH 06/12] Attempt building with vs2019 explicitly --- .azure-pipelines/azure-pipelines-win.yml | 16 ++++++++-------- ...y1.22python3.10.____cpythonsuffix-novec.yaml} | 4 ++-- ...nenumpy1.22python3.10.____cpythonsuffix.yaml} | 4 ++-- ...y1.22python3.10.____cpythonsuffix-novec.yaml} | 4 ++-- ....2numpy1.22python3.10.____cpythonsuffix.yaml} | 4 ++-- README.md | 16 ++++++++-------- recipe/conda_build_config.yaml | 4 ++-- 7 files changed, 26 insertions(+), 26 deletions(-) rename .ci_support/{win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml => win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml} (95%) rename .ci_support/{win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml => win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml} (95%) rename .ci_support/{win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml => win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml} (95%) rename .ci_support/{win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml => win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml} (95%) diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index 892b0760..ae034f34 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -8,17 +8,17 @@ jobs: vmImage: windows-2022 strategy: matrix: - win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix: - CONFIG: win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix + win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix: + CONFIG: win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec + win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec: + CONFIG: win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix + win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix: + CONFIG: win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec + win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec: + CONFIG: win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 variables: diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml similarity index 95% rename from .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml rename to .ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml index 0961044c..e70cd1bd 100644 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml +++ b/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -1,5 +1,5 @@ c_compiler: -- vs2022 +- vs2019 channel_sources: - conda-forge channel_targets: @@ -11,7 +11,7 @@ cuda_compiler_version: cudnn: - '8' cxx_compiler: -- vs2022 +- vs2019 numpy: - '1.22' pin_run_as_build: diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml similarity index 95% rename from .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml rename to .ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml index 3720e3c7..64327fd0 100644 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml +++ b/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml @@ -1,5 +1,5 @@ c_compiler: -- vs2022 +- vs2019 channel_sources: - conda-forge channel_targets: @@ -11,7 +11,7 @@ cuda_compiler_version: cudnn: - '8' cxx_compiler: -- vs2022 +- vs2019 numpy: - '1.22' pin_run_as_build: diff --git a/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml similarity index 95% rename from .ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml rename to .ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml index 57250e7b..e6a8c5e2 100644 --- a/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml +++ b/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -1,5 +1,5 @@ c_compiler: -- vs2022 +- vs2019 channel_sources: - conda-forge channel_targets: @@ -11,7 +11,7 @@ cuda_compiler_version: cudnn: - '8' cxx_compiler: -- vs2022 +- vs2019 numpy: - '1.22' pin_run_as_build: diff --git a/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml similarity index 95% rename from .ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml rename to .ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml index efd58bd6..bde9b1ca 100644 --- a/.ci_support/win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml +++ b/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml @@ -1,5 +1,5 @@ c_compiler: -- vs2022 +- vs2019 channel_sources: - conda-forge channel_targets: @@ -11,7 +11,7 @@ cuda_compiler_version: cudnn: - '8' cxx_compiler: -- vs2022 +- vs2019 numpy: - '1.22' pin_run_as_build: diff --git a/README.md b/README.md index 8e082f5a..b2b57fc9 100644 --- a/README.md +++ b/README.md @@ -27,31 +27,31 @@ Current build status
VariantStatus
win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffixwin_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix - variant + variant
win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novecwin_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec - variant + variant
win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffixwin_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix - variant + variant
win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novecwin_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec - variant + variant
- + - + - + - + diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml index b184880b..4b4b94fa 100644 --- a/recipe/conda_build_config.yaml +++ b/recipe/conda_build_config.yaml @@ -14,6 +14,6 @@ docker_image: # [linux64] cdt_name: # [linux64] - cos7 # [linux64] c_compiler: # [win] - - vs2022 # [win] + - vs2019 # [win] cxx_compiler: # [win] - - vs2022 # [win] + - vs2019 # [win] From 1488d2a3f8ab49191a02a7d6a39c139ae5860a9d Mon Sep 17 00:00:00 2001 From: Christian Bourjau Date: Mon, 25 Sep 2023 19:35:51 +0200 Subject: [PATCH 07/12] Disable cuda on Windows due to incompatibility with vs2022 --- .azure-pipelines/azure-pipelines-win.yml | 14 +++----- ...22python3.10.____cpythonsuffix-novec.yaml} | 6 ---- ...umpy1.22python3.10.____cpythonsuffix.yaml} | 6 ---- ....22python3.10.____cpythonsuffix-novec.yaml | 33 ------------------- ...numpy1.22python3.10.____cpythonsuffix.yaml | 33 ------------------- README.md | 22 +++---------- recipe/meta.yaml | 3 +- 7 files changed, 10 insertions(+), 107 deletions(-) rename .ci_support/{win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml => win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml} (80%) rename .ci_support/{win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml => win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml} (80%) delete mode 100644 .ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index ae034f34..8c8b1531 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -8,17 +8,11 @@ jobs: vmImage: windows-2022 strategy: matrix: - win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix: - CONFIG: win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix + win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix UPLOAD_PACKAGES: 'True' - win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix: - CONFIG: win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec + win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 variables: diff --git a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml similarity index 80% rename from .ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml rename to .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml index e70cd1bd..d1862b96 100644 --- a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -4,12 +4,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -cuda_compiler: -- None cuda_compiler_version: - None -cudnn: -- '8' cxx_compiler: - vs2019 numpy: @@ -25,8 +21,6 @@ suffix: target_platform: - win-64 zip_keys: -- - cuda_compiler - - cuda_compiler_version - - python - numpy zlib: diff --git a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml similarity index 80% rename from .ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml rename to .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml index 64327fd0..d451a94a 100644 --- a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml @@ -4,12 +4,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -cuda_compiler: -- None cuda_compiler_version: - None -cudnn: -- '8' cxx_compiler: - vs2019 numpy: @@ -25,8 +21,6 @@ suffix: target_platform: - win-64 zip_keys: -- - cuda_compiler - - cuda_compiler_version - - python - numpy zlib: diff --git a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml deleted file mode 100644 index e6a8c5e2..00000000 --- a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,33 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- '11.2' -cudnn: -- '8' -cxx_compiler: -- vs2019 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- -novec -target_platform: -- win-64 -zip_keys: -- - cuda_compiler - - cuda_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml deleted file mode 100644 index bde9b1ca..00000000 --- a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix.yaml +++ /dev/null @@ -1,33 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- nvcc -cuda_compiler_version: -- '11.2' -cudnn: -- '8' -cxx_compiler: -- vs2019 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- '' -target_platform: -- win-64 -zip_keys: -- - cuda_compiler - - cuda_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/README.md b/README.md index b2b57fc9..91e628e2 100644 --- a/README.md +++ b/README.md @@ -27,31 +27,17 @@ Current build status
VariantStatus
win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffixwin_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix - variant + variant
win_64_cuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novecwin_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec - variant + variant
win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffixwin_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix - variant + variant
win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novecwin_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec - variant + variant
- + - + - - - - - - diff --git a/recipe/meta.yaml b/recipe/meta.yaml index f20855a8..49b5943c 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -21,7 +21,8 @@ source: build: number: 0 # Since 1.11, power9 seems to be required. - skip: true # [ppc64le or (cuda_compiler_version == "10.2" or cuda_compiler_version == "11.0" or cuda_compiler_version == "11.1" or py!=310 or unix)] + # onnxruntime >=1.16.0 requires vs2022 to build, but cuda 11.2 does not support it. + skip: true # [ppc64le or (cuda_compiler_version == "10.2" or cuda_compiler_version == "11.0" or cuda_compiler_version == "11.1" or py!=310 or unix or (win and cuda_compiler_version == "11.2"))] string: py{{ CONDA_PY }}h{{ PKG_HASH }}_{{ PKG_BUILDNUM }}_{{ build_ext }} ignore_run_exports_from: - zlib From 71934fc26e9d4e126d386d25c9e4ac2d2bda7c33 Mon Sep 17 00:00:00 2001 From: Christian Bourjau Date: Mon, 25 Sep 2023 20:45:29 +0200 Subject: [PATCH 08/12] Rerender with vs2022 --- ...ersionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml | 4 ++-- ...iler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml | 4 ++-- recipe/conda_build_config.yaml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml index d1862b96..ed0933cb 100644 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -1,5 +1,5 @@ c_compiler: -- vs2019 +- vs2022 channel_sources: - conda-forge channel_targets: @@ -7,7 +7,7 @@ channel_targets: cuda_compiler_version: - None cxx_compiler: -- vs2019 +- vs2022 numpy: - '1.22' pin_run_as_build: diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml index d451a94a..f4ce0948 100644 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml @@ -1,5 +1,5 @@ c_compiler: -- vs2019 +- vs2022 channel_sources: - conda-forge channel_targets: @@ -7,7 +7,7 @@ channel_targets: cuda_compiler_version: - None cxx_compiler: -- vs2019 +- vs2022 numpy: - '1.22' pin_run_as_build: diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml index 4b4b94fa..b184880b 100644 --- a/recipe/conda_build_config.yaml +++ b/recipe/conda_build_config.yaml @@ -14,6 +14,6 @@ docker_image: # [linux64] cdt_name: # [linux64] - cos7 # [linux64] c_compiler: # [win] - - vs2019 # [win] + - vs2022 # [win] cxx_compiler: # [win] - - vs2019 # [win] + - vs2022 # [win] From 740ff0a9ae48c08a51b0b0f473e394a4545aacf3 Mon Sep 17 00:00:00 2001 From: Christian Bourjau Date: Tue, 26 Sep 2023 22:36:34 +0200 Subject: [PATCH 09/12] Enable builds for other platforms --- .azure-pipelines/azure-pipelines-linux.yml | 187 +++++++++ .azure-pipelines/azure-pipelines-osx.yml | 79 ++++ .azure-pipelines/azure-pipelines-win.yml | 19 + ....22python3.10.____cpythonsuffix-novec.yaml | 45 +++ ...numpy1.22python3.10.____cpythonsuffix.yaml | 45 +++ ...1.22python3.8.____cpythonsuffix-novec.yaml | 45 +++ ...0numpy1.22python3.8.____cpythonsuffix.yaml | 45 +++ ...1.22python3.9.____cpythonsuffix-novec.yaml | 45 +++ ...0numpy1.22python3.9.____cpythonsuffix.yaml | 45 +++ ....23python3.11.____cpythonsuffix-novec.yaml | 45 +++ ...numpy1.23python3.11.____cpythonsuffix.yaml | 45 +++ ....22python3.10.____cpythonsuffix-novec.yaml | 45 +++ ...numpy1.22python3.10.____cpythonsuffix.yaml | 45 +++ ...1.22python3.8.____cpythonsuffix-novec.yaml | 45 +++ ...2numpy1.22python3.8.____cpythonsuffix.yaml | 45 +++ ...1.22python3.9.____cpythonsuffix-novec.yaml | 45 +++ ...2numpy1.22python3.9.____cpythonsuffix.yaml | 45 +++ ....23python3.11.____cpythonsuffix-novec.yaml | 45 +++ ...numpy1.23python3.11.____cpythonsuffix.yaml | 45 +++ ....22python3.10.____cpythonsuffix-novec.yaml | 49 +++ ...numpy1.22python3.10.____cpythonsuffix.yaml | 49 +++ ...1.22python3.8.____cpythonsuffix-novec.yaml | 49 +++ ...0numpy1.22python3.8.____cpythonsuffix.yaml | 49 +++ ...1.22python3.9.____cpythonsuffix-novec.yaml | 49 +++ ...0numpy1.22python3.9.____cpythonsuffix.yaml | 49 +++ ....23python3.11.____cpythonsuffix-novec.yaml | 49 +++ ...numpy1.23python3.11.____cpythonsuffix.yaml | 49 +++ ....22python3.10.____cpythonsuffix-novec.yaml | 49 +++ ...numpy1.22python3.10.____cpythonsuffix.yaml | 49 +++ ...1.22python3.8.____cpythonsuffix-novec.yaml | 49 +++ ...2numpy1.22python3.8.____cpythonsuffix.yaml | 49 +++ ...1.22python3.9.____cpythonsuffix-novec.yaml | 49 +++ ...2numpy1.22python3.9.____cpythonsuffix.yaml | 49 +++ ....23python3.11.____cpythonsuffix-novec.yaml | 49 +++ ...numpy1.23python3.11.____cpythonsuffix.yaml | 49 +++ ....22python3.10.____cpythonsuffix-novec.yaml | 39 ++ ...numpy1.22python3.10.____cpythonsuffix.yaml | 39 ++ ...1.22python3.8.____cpythonsuffix-novec.yaml | 39 ++ ..._numpy1.22python3.8.____cpythonsuffix.yaml | 39 ++ ...1.22python3.9.____cpythonsuffix-novec.yaml | 39 ++ ..._numpy1.22python3.9.____cpythonsuffix.yaml | 39 ++ ....23python3.11.____cpythonsuffix-novec.yaml | 39 ++ ...numpy1.23python3.11.____cpythonsuffix.yaml | 39 ++ ....22python3.10.____cpythonsuffix-novec.yaml | 37 ++ ...numpy1.22python3.10.____cpythonsuffix.yaml | 37 ++ ...1.22python3.8.____cpythonsuffix-novec.yaml | 37 ++ ..._numpy1.22python3.8.____cpythonsuffix.yaml | 37 ++ ...1.22python3.9.____cpythonsuffix-novec.yaml | 37 ++ ..._numpy1.22python3.9.____cpythonsuffix.yaml | 37 ++ ....23python3.11.____cpythonsuffix-novec.yaml | 37 ++ ...numpy1.23python3.11.____cpythonsuffix.yaml | 37 ++ ...1.22python3.8.____cpythonsuffix-novec.yaml | 27 ++ ...enumpy1.22python3.8.____cpythonsuffix.yaml | 27 ++ ...1.22python3.9.____cpythonsuffix-novec.yaml | 27 ++ ...enumpy1.22python3.9.____cpythonsuffix.yaml | 27 ++ ....23python3.11.____cpythonsuffix-novec.yaml | 27 ++ ...numpy1.23python3.11.____cpythonsuffix.yaml | 27 ++ .scripts/build_steps.sh | 89 +++++ .scripts/run_docker_build.sh | 105 +++++ .scripts/run_osx_build.sh | 94 +++++ README.md | 378 ++++++++++++++++++ azure-pipelines.yml | 4 +- recipe/meta.yaml | 2 +- 63 files changed, 3229 insertions(+), 2 deletions(-) create mode 100755 .azure-pipelines/azure-pipelines-linux.yml create mode 100755 .azure-pipelines/azure-pipelines-osx.yml create mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml create mode 100644 .ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix.yaml create mode 100644 .ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix.yaml create mode 100644 .ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix.yaml create mode 100644 .ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix.yaml create mode 100644 .ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix.yaml create mode 100644 .ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix.yaml create mode 100644 .ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix.yaml create mode 100644 .ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix.yaml create mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix.yaml create mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix.yaml create mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix.yaml create mode 100755 .scripts/build_steps.sh create mode 100755 .scripts/run_docker_build.sh create mode 100755 .scripts/run_osx_build.sh diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml new file mode 100755 index 00000000..ee39e76e --- /dev/null +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -0,0 +1,187 @@ +# This file was generated automatically from conda-smithy. To update this configuration, +# update the conda-forge.yml and/or the recipe/meta.yaml. +# -*- mode: yaml -*- + +jobs: +- job: linux + pool: + vmImage: ubuntu-latest + strategy: + matrix: + linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix: + CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec: + CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix: + CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec: + CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix: + CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec: + CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix: + CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec: + CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix: + CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec: + CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix: + CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec: + CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix: + CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec: + CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix: + CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec: + CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix + : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec + : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix + : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec + : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix + : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec + : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix + : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec + : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec + : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + maxParallel: 29 + timeoutInMinutes: 360 + + steps: + - script: | + sudo mkdir -p /opt/empty_dir || true + for d in \ + /opt/ghc \ + /opt/hostedtoolcache \ + /usr/lib/jvm \ + /usr/local/.ghcup \ + /usr/local/lib/android \ + /usr/local/share/powershell \ + /usr/share/dotnet \ + /usr/share/swift \ + ; do + sudo rsync --stats -a --delete /opt/empty_dir/ $d || true + done + sudo apt-get purge -y -f firefox \ + google-chrome-stable \ + microsoft-edge-stable + sudo apt-get autoremove -y >& /dev/null + sudo apt-get autoclean -y >& /dev/null + sudo docker image prune --all --force + df -h + displayName: Manage disk space + # configure qemu binfmt-misc running. This allows us to run docker containers + # embedded qemu-static + - script: | + docker run --rm --privileged multiarch/qemu-user-static:register --reset --credential yes + ls /proc/sys/fs/binfmt_misc/ + condition: not(startsWith(variables['CONFIG'], 'linux_64')) + displayName: Configure binfmt_misc + + - script: | + export CI=azure + export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME + export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME}) + if [[ "${BUILD_REASON:-}" == "PullRequest" ]]; then + export IS_PR_BUILD="True" + else + export IS_PR_BUILD="False" + fi + .scripts/run_docker_build.sh + displayName: Run docker build + env: + BINSTAR_TOKEN: $(BINSTAR_TOKEN) + FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) + STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) \ No newline at end of file diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml new file mode 100755 index 00000000..56294e7f --- /dev/null +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -0,0 +1,79 @@ +# This file was generated automatically from conda-smithy. To update this configuration, +# update the conda-forge.yml and/or the recipe/meta.yaml. +# -*- mode: yaml -*- + +jobs: +- job: osx + pool: + vmImage: macOS-11 + strategy: + matrix: + osx_64_numpy1.22python3.10.____cpythonsuffix: + CONFIG: osx_64_numpy1.22python3.10.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + osx_64_numpy1.22python3.10.____cpythonsuffix-novec: + CONFIG: osx_64_numpy1.22python3.10.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + osx_64_numpy1.22python3.8.____cpythonsuffix: + CONFIG: osx_64_numpy1.22python3.8.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + osx_64_numpy1.22python3.8.____cpythonsuffix-novec: + CONFIG: osx_64_numpy1.22python3.8.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + osx_64_numpy1.22python3.9.____cpythonsuffix: + CONFIG: osx_64_numpy1.22python3.9.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + osx_64_numpy1.22python3.9.____cpythonsuffix-novec: + CONFIG: osx_64_numpy1.22python3.9.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + osx_64_numpy1.23python3.11.____cpythonsuffix: + CONFIG: osx_64_numpy1.23python3.11.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + osx_64_numpy1.23python3.11.____cpythonsuffix-novec: + CONFIG: osx_64_numpy1.23python3.11.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + osx_arm64_numpy1.22python3.10.____cpythonsuffix: + CONFIG: osx_arm64_numpy1.22python3.10.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec: + CONFIG: osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + osx_arm64_numpy1.22python3.8.____cpythonsuffix: + CONFIG: osx_arm64_numpy1.22python3.8.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec: + CONFIG: osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + osx_arm64_numpy1.22python3.9.____cpythonsuffix: + CONFIG: osx_arm64_numpy1.22python3.9.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec: + CONFIG: osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + osx_arm64_numpy1.23python3.11.____cpythonsuffix: + CONFIG: osx_arm64_numpy1.23python3.11.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec: + CONFIG: osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + maxParallel: 14 + timeoutInMinutes: 360 + + steps: + # TODO: Fast finish on azure pipelines? + - script: | + export CI=azure + export OSX_FORCE_SDK_DOWNLOAD="1" + export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME + export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME}) + if [[ "${BUILD_REASON:-}" == "PullRequest" ]]; then + export IS_PR_BUILD="True" + else + export IS_PR_BUILD="False" + fi + ./.scripts/run_osx_build.sh + displayName: Run OSX build + env: + BINSTAR_TOKEN: $(BINSTAR_TOKEN) + FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) + STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) \ No newline at end of file diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index 8c8b1531..7306bbaa 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -14,6 +14,25 @@ jobs: win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec: CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec UPLOAD_PACKAGES: 'True' + win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + maxParallel: 7 timeoutInMinutes: 360 variables: CONDA_BLD_PATH: D:\\bld\\ diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..7771bf9a --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -0,0 +1,45 @@ +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: +- undefined +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cuda:11.2 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- -novec +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml new file mode 100644 index 00000000..59bd4a19 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml @@ -0,0 +1,45 @@ +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: +- undefined +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cuda:11.2 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- '' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..ae661560 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml @@ -0,0 +1,45 @@ +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: +- undefined +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cuda:11.2 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- -novec +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml new file mode 100644 index 00000000..f92b6559 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml @@ -0,0 +1,45 @@ +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: +- undefined +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cuda:11.2 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- '' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..38b44c5a --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml @@ -0,0 +1,45 @@ +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: +- undefined +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cuda:11.2 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- -novec +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml new file mode 100644 index 00000000..d642e850 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml @@ -0,0 +1,45 @@ +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: +- undefined +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cuda:11.2 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- '' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..b528ad48 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml @@ -0,0 +1,45 @@ +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: +- undefined +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cuda:11.2 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- -novec +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml new file mode 100644 index 00000000..206099aa --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml @@ -0,0 +1,45 @@ +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: +- undefined +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cuda:11.2 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- '' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..b21901aa --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -0,0 +1,45 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler: +- None +cuda_compiler_version: +- None +cudnn: +- undefined +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- -novec +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml new file mode 100644 index 00000000..7da5bc29 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml @@ -0,0 +1,45 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler: +- None +cuda_compiler_version: +- None +cudnn: +- undefined +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- '' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..784441e0 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml @@ -0,0 +1,45 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler: +- None +cuda_compiler_version: +- None +cudnn: +- undefined +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- -novec +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml new file mode 100644 index 00000000..e6fd9535 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml @@ -0,0 +1,45 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler: +- None +cuda_compiler_version: +- None +cudnn: +- undefined +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- '' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..9f75e3b4 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml @@ -0,0 +1,45 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler: +- None +cuda_compiler_version: +- None +cudnn: +- undefined +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- -novec +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml new file mode 100644 index 00000000..64fdc92d --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml @@ -0,0 +1,45 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler: +- None +cuda_compiler_version: +- None +cudnn: +- undefined +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- '' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..ed8067a0 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml @@ -0,0 +1,45 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler: +- None +cuda_compiler_version: +- None +cudnn: +- undefined +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- -novec +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml new file mode 100644 index 00000000..44898935 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml @@ -0,0 +1,45 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler: +- None +cuda_compiler_version: +- None +cudnn: +- undefined +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- '' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..1c945f88 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- -novec +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml new file mode 100644 index 00000000..50389d56 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- '' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..43530363 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- -novec +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml new file mode 100644 index 00000000..c6c894ca --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- '' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..3f8788a1 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- -novec +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml new file mode 100644 index 00000000..da23c9d5 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- '' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..69ac00b7 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +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 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- -novec +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml new file mode 100644 index 00000000..96c0948e --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +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 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- '' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..6a2518c1 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- -novec +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml new file mode 100644 index 00000000..ae395d9c --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- '' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..385a27d9 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- -novec +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml new file mode 100644 index 00000000..f9474064 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- '' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..8f3f4a42 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- -novec +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml new file mode 100644 index 00000000..5c8cb959 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- '' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..c8446f8c --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +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 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- -novec +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml new file mode 100644 index 00000000..93ac4d28 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +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 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- '' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..1c2b252b --- /dev/null +++ b/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -0,0 +1,39 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.14' +MACOSX_SDK_VERSION: +- '10.14' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- -novec +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix.yaml new file mode 100644 index 00000000..419ba80a --- /dev/null +++ b/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix.yaml @@ -0,0 +1,39 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.14' +MACOSX_SDK_VERSION: +- '10.14' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- '' +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..8e7caec3 --- /dev/null +++ b/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix-novec.yaml @@ -0,0 +1,39 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.14' +MACOSX_SDK_VERSION: +- '10.14' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- -novec +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix.yaml new file mode 100644 index 00000000..cba84ef9 --- /dev/null +++ b/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix.yaml @@ -0,0 +1,39 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.14' +MACOSX_SDK_VERSION: +- '10.14' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- '' +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..61e30ec5 --- /dev/null +++ b/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix-novec.yaml @@ -0,0 +1,39 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.14' +MACOSX_SDK_VERSION: +- '10.14' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- -novec +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix.yaml new file mode 100644 index 00000000..6554f01a --- /dev/null +++ b/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix.yaml @@ -0,0 +1,39 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.14' +MACOSX_SDK_VERSION: +- '10.14' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- '' +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..be457ec6 --- /dev/null +++ b/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix-novec.yaml @@ -0,0 +1,39 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.14' +MACOSX_SDK_VERSION: +- '10.14' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- -novec +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix.yaml new file mode 100644 index 00000000..666a870b --- /dev/null +++ b/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix.yaml @@ -0,0 +1,39 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.14' +MACOSX_SDK_VERSION: +- '10.14' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- '' +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..6d71dc3b --- /dev/null +++ b/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -0,0 +1,37 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- -novec +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix.yaml new file mode 100644 index 00000000..27d6b9a1 --- /dev/null +++ b/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix.yaml @@ -0,0 +1,37 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- '' +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..2bb99115 --- /dev/null +++ b/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec.yaml @@ -0,0 +1,37 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- -novec +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix.yaml new file mode 100644 index 00000000..7b704867 --- /dev/null +++ b/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix.yaml @@ -0,0 +1,37 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- '' +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..6374c418 --- /dev/null +++ b/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec.yaml @@ -0,0 +1,37 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- -novec +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix.yaml new file mode 100644 index 00000000..278721d9 --- /dev/null +++ b/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix.yaml @@ -0,0 +1,37 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- '' +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..78b7a25f --- /dev/null +++ b/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec.yaml @@ -0,0 +1,37 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- -novec +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix.yaml new file mode 100644 index 00000000..47698dd2 --- /dev/null +++ b/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix.yaml @@ -0,0 +1,37 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- '' +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..068b7265 --- /dev/null +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec.yaml @@ -0,0 +1,27 @@ +c_compiler: +- vs2022 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- vs2022 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- -novec +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix.yaml new file mode 100644 index 00000000..3c15d4ad --- /dev/null +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix.yaml @@ -0,0 +1,27 @@ +c_compiler: +- vs2022 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- vs2022 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- '' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..6ef8978d --- /dev/null +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec.yaml @@ -0,0 +1,27 @@ +c_compiler: +- vs2022 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- vs2022 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- -novec +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix.yaml new file mode 100644 index 00000000..8ddc9d73 --- /dev/null +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix.yaml @@ -0,0 +1,27 @@ +c_compiler: +- vs2022 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- vs2022 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- '' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..55366d64 --- /dev/null +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec.yaml @@ -0,0 +1,27 @@ +c_compiler: +- vs2022 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- vs2022 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- -novec +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix.yaml new file mode 100644 index 00000000..5926e4a3 --- /dev/null +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix.yaml @@ -0,0 +1,27 @@ +c_compiler: +- vs2022 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- vs2022 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- '' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.scripts/build_steps.sh b/.scripts/build_steps.sh new file mode 100755 index 00000000..322832b9 --- /dev/null +++ b/.scripts/build_steps.sh @@ -0,0 +1,89 @@ +#!/usr/bin/env bash + +# PLEASE NOTE: This script has been automatically generated by conda-smithy. Any changes here +# will be lost next time ``conda smithy rerender`` is run. If you would like to make permanent +# changes to this script, consider a proposal to conda-smithy so that other feedstocks can also +# benefit from the improvement. + +# -*- mode: jinja-shell -*- + +set -xeuo pipefail +export FEEDSTOCK_ROOT="${FEEDSTOCK_ROOT:-/home/conda/feedstock_root}" +source ${FEEDSTOCK_ROOT}/.scripts/logging_utils.sh + + +( endgroup "Start Docker" ) 2> /dev/null + +( startgroup "Configuring conda" ) 2> /dev/null + +export PYTHONUNBUFFERED=1 +export RECIPE_ROOT="${RECIPE_ROOT:-/home/conda/recipe_root}" +export CI_SUPPORT="${FEEDSTOCK_ROOT}/.ci_support" +export CONFIG_FILE="${CI_SUPPORT}/${CONFIG}.yaml" + +cat >~/.condarc < /dev/null + +if [[ -f "${FEEDSTOCK_ROOT}/LICENSE.txt" ]]; then + cp "${FEEDSTOCK_ROOT}/LICENSE.txt" "${RECIPE_ROOT}/recipe-scripts-license.txt" +fi + +if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then + if [[ "x${BUILD_OUTPUT_ID:-}" != "x" ]]; then + EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --output-id ${BUILD_OUTPUT_ID}" + fi + conda debug "${RECIPE_ROOT}" -m "${CI_SUPPORT}/${CONFIG}.yaml" \ + ${EXTRA_CB_OPTIONS:-} \ + --clobber-file "${CI_SUPPORT}/clobber_${CONFIG}.yaml" + + # Drop into an interactive shell + /bin/bash +else + conda mambabuild "${RECIPE_ROOT}" -m "${CI_SUPPORT}/${CONFIG}.yaml" \ + --suppress-variables ${EXTRA_CB_OPTIONS:-} \ + --clobber-file "${CI_SUPPORT}/clobber_${CONFIG}.yaml" + ( startgroup "Validating outputs" ) 2> /dev/null + + validate_recipe_outputs "${FEEDSTOCK_NAME}" + + ( endgroup "Validating outputs" ) 2> /dev/null + + ( startgroup "Uploading packages" ) 2> /dev/null + + if [[ "${UPLOAD_PACKAGES}" != "False" ]] && [[ "${IS_PR_BUILD}" == "False" ]]; then + upload_package --validate --feedstock-name="${FEEDSTOCK_NAME}" "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}" + fi + + ( endgroup "Uploading packages" ) 2> /dev/null +fi + +( startgroup "Final checks" ) 2> /dev/null + +touch "${FEEDSTOCK_ROOT}/build_artifacts/conda-forge-build-done-${CONFIG}" \ No newline at end of file diff --git a/.scripts/run_docker_build.sh b/.scripts/run_docker_build.sh new file mode 100755 index 00000000..92362398 --- /dev/null +++ b/.scripts/run_docker_build.sh @@ -0,0 +1,105 @@ +#!/usr/bin/env bash + +# PLEASE NOTE: This script has been automatically generated by conda-smithy. Any changes here +# will be lost next time ``conda smithy rerender`` is run. If you would like to make permanent +# changes to this script, consider a proposal to conda-smithy so that other feedstocks can also +# benefit from the improvement. + +source .scripts/logging_utils.sh + +( startgroup "Configure Docker" ) 2> /dev/null + +set -xeo pipefail + +THISDIR="$( cd "$( dirname "$0" )" >/dev/null && pwd )" +PROVIDER_DIR="$(basename $THISDIR)" + +FEEDSTOCK_ROOT="$( cd "$( dirname "$0" )/.." >/dev/null && pwd )" +RECIPE_ROOT="${FEEDSTOCK_ROOT}/recipe" + +if [ -z ${FEEDSTOCK_NAME} ]; then + export FEEDSTOCK_NAME=$(basename ${FEEDSTOCK_ROOT}) +fi + +docker info + +# In order for the conda-build process in the container to write to the mounted +# volumes, we need to run with the same id as the host machine, which is +# normally the owner of the mounted volumes, or at least has write permission +export HOST_USER_ID=$(id -u) +# Check if docker-machine is being used (normally on OSX) and get the uid from +# the VM +if hash docker-machine 2> /dev/null && docker-machine active > /dev/null; then + export HOST_USER_ID=$(docker-machine ssh $(docker-machine active) id -u) +fi + +ARTIFACTS="$FEEDSTOCK_ROOT/build_artifacts" + +if [ -z "$CONFIG" ]; then + set +x + FILES=`ls .ci_support/linux_*` + CONFIGS="" + for file in $FILES; do + CONFIGS="${CONFIGS}'${file:12:-5}' or "; + done + echo "Need to set CONFIG env variable. Value can be one of ${CONFIGS:0:-4}" + exit 1 +fi + +if [ -z "${DOCKER_IMAGE}" ]; then + SHYAML_INSTALLED="$(shyaml -h || echo NO)" + if [ "${SHYAML_INSTALLED}" == "NO" ]; then + echo "WARNING: DOCKER_IMAGE variable not set and shyaml not installed. Trying to parse with coreutils" + DOCKER_IMAGE=$(cat .ci_support/${CONFIG}.yaml | grep '^docker_image:$' -A 1 | tail -n 1 | cut -b 3-) + if [ "${DOCKER_IMAGE}" = "" ]; then + echo "No docker_image entry found in ${CONFIG}. Falling back to quay.io/condaforge/linux-anvil-comp7" + DOCKER_IMAGE="quay.io/condaforge/linux-anvil-comp7" + fi + else + DOCKER_IMAGE="$(cat "${FEEDSTOCK_ROOT}/.ci_support/${CONFIG}.yaml" | shyaml get-value docker_image.0 quay.io/condaforge/linux-anvil-comp7 )" + fi +fi + +mkdir -p "$ARTIFACTS" +DONE_CANARY="$ARTIFACTS/conda-forge-build-done-${CONFIG}" +rm -f "$DONE_CANARY" + +# Allow people to specify extra default arguments to `docker run` (e.g. `--rm`) +DOCKER_RUN_ARGS="${CONDA_FORGE_DOCKER_RUN_ARGS}" +if [ -z "${CI}" ]; then + DOCKER_RUN_ARGS="-it ${DOCKER_RUN_ARGS}" +fi + +( endgroup "Configure Docker" ) 2> /dev/null + +( startgroup "Start Docker" ) 2> /dev/null + +export UPLOAD_PACKAGES="${UPLOAD_PACKAGES:-True}" +export IS_PR_BUILD="${IS_PR_BUILD:-False}" +docker pull "${DOCKER_IMAGE}" +docker run ${DOCKER_RUN_ARGS} \ + -v "${RECIPE_ROOT}":/home/conda/recipe_root:rw,z,delegated \ + -v "${FEEDSTOCK_ROOT}":/home/conda/feedstock_root:rw,z,delegated \ + -e CONFIG \ + -e HOST_USER_ID \ + -e UPLOAD_PACKAGES \ + -e IS_PR_BUILD \ + -e GIT_BRANCH \ + -e UPLOAD_ON_BRANCH \ + -e CI \ + -e FEEDSTOCK_NAME \ + -e CPU_COUNT \ + -e BUILD_WITH_CONDA_DEBUG \ + -e BUILD_OUTPUT_ID \ + -e BINSTAR_TOKEN \ + -e FEEDSTOCK_TOKEN \ + -e STAGING_BINSTAR_TOKEN \ + "${DOCKER_IMAGE}" \ + bash \ + "/home/conda/feedstock_root/${PROVIDER_DIR}/build_steps.sh" + +# verify that the end of the script was reached +test -f "$DONE_CANARY" + +# This closes the last group opened in `build_steps.sh` +( endgroup "Final checks" ) 2> /dev/null \ No newline at end of file diff --git a/.scripts/run_osx_build.sh b/.scripts/run_osx_build.sh new file mode 100755 index 00000000..cd9a88f2 --- /dev/null +++ b/.scripts/run_osx_build.sh @@ -0,0 +1,94 @@ +#!/usr/bin/env bash + +# -*- mode: jinja-shell -*- + +source .scripts/logging_utils.sh + +set -xe + +MINIFORGE_HOME=${MINIFORGE_HOME:-${HOME}/miniforge3} + +( startgroup "Installing a fresh version of Miniforge" ) 2> /dev/null + +MINIFORGE_URL="https://github.com/conda-forge/miniforge/releases/latest/download" +MINIFORGE_FILE="Mambaforge-MacOSX-$(uname -m).sh" +curl -L -O "${MINIFORGE_URL}/${MINIFORGE_FILE}" +rm -rf ${MINIFORGE_HOME} +bash $MINIFORGE_FILE -b -p ${MINIFORGE_HOME} + +( endgroup "Installing a fresh version of Miniforge" ) 2> /dev/null + +( startgroup "Configuring conda" ) 2> /dev/null + +source ${MINIFORGE_HOME}/etc/profile.d/conda.sh +conda activate base + +mamba install --update-specs --quiet --yes --channel conda-forge --strict-channel-priority \ + pip mamba conda-build boa conda-forge-ci-setup=3 +mamba update --update-specs --yes --quiet --channel conda-forge --strict-channel-priority \ + pip mamba conda-build boa conda-forge-ci-setup + + + +echo -e "\n\nSetting up the condarc and mangling the compiler." +setup_conda_rc ./ ./recipe ./.ci_support/${CONFIG}.yaml + +if [[ "${CI:-}" != "" ]]; then + mangle_compiler ./ ./recipe .ci_support/${CONFIG}.yaml +fi + +if [[ "${CI:-}" != "" ]]; then + echo -e "\n\nMangling homebrew in the CI to avoid conflicts." + /usr/bin/sudo mangle_homebrew + /usr/bin/sudo -k +else + echo -e "\n\nNot mangling homebrew as we are not running in CI" +fi + +echo -e "\n\nRunning the build setup script." +source run_conda_forge_build_setup + + + +( endgroup "Configuring conda" ) 2> /dev/null + +echo -e "\n\nMaking the build clobber file" +make_build_number ./ ./recipe ./.ci_support/${CONFIG}.yaml + +if [[ -f LICENSE.txt ]]; then + cp LICENSE.txt "recipe/recipe-scripts-license.txt" +fi + +if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then + if [[ "x${BUILD_OUTPUT_ID:-}" != "x" ]]; then + EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --output-id ${BUILD_OUTPUT_ID}" + fi + conda debug ./recipe -m ./.ci_support/${CONFIG}.yaml \ + ${EXTRA_CB_OPTIONS:-} \ + --clobber-file ./.ci_support/clobber_${CONFIG}.yaml + + # Drop into an interactive shell + /bin/bash +else + + if [[ "${HOST_PLATFORM}" != "${BUILD_PLATFORM}" ]]; then + EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --no-test" + fi + + conda mambabuild ./recipe -m ./.ci_support/${CONFIG}.yaml \ + --suppress-variables ${EXTRA_CB_OPTIONS:-} \ + --clobber-file ./.ci_support/clobber_${CONFIG}.yaml + ( startgroup "Validating outputs" ) 2> /dev/null + + validate_recipe_outputs "${FEEDSTOCK_NAME}" + + ( endgroup "Validating outputs" ) 2> /dev/null + + ( startgroup "Uploading packages" ) 2> /dev/null + + if [[ "${UPLOAD_PACKAGES}" != "False" ]] && [[ "${IS_PR_BUILD}" == "False" ]]; then + upload_package --validate --feedstock-name="${FEEDSTOCK_NAME}" ./ ./recipe ./.ci_support/${CONFIG}.yaml + fi + + ( endgroup "Uploading packages" ) 2> /dev/null +fi \ No newline at end of file diff --git a/README.md b/README.md index 91e628e2..48656c1b 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,342 @@ Current build status
VariantStatus
win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffixwin_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix - variant + variant
win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novecwin_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec - variant - -
win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix - - variant - -
win_64_cuda_compilernvcccuda_compiler_version11.2numpy1.22python3.10.____cpythonsuffix-novec - - variant + variant
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
VariantStatus
linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix + + variant + +
linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec + + variant + +
linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix + + variant + +
linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec + + variant + +
linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix + + variant + +
linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec + + variant + +
linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix + + variant + +
linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec + + variant + +
linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix + + variant + +
linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec + + variant + +
linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix + + variant + +
linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec + + variant + +
linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix + + variant + +
linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec + + variant + +
linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix + + variant + +
linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec + + variant + +
linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix + + variant + +
linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec + + variant + +
linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix + + variant + +
linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec + + variant + +
linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix + + variant + +
linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec + + variant + +
linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix + + variant + +
linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec + + variant + +
linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix + + variant + +
linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec + + variant + +
linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix + + variant + +
linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec + + variant + +
linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix + + variant + +
linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec + + variant + +
linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix + + variant + +
linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec + + variant + +
osx_64_numpy1.22python3.10.____cpythonsuffix + + variant + +
osx_64_numpy1.22python3.10.____cpythonsuffix-novec + + variant + +
osx_64_numpy1.22python3.8.____cpythonsuffix + + variant + +
osx_64_numpy1.22python3.8.____cpythonsuffix-novec + + variant + +
osx_64_numpy1.22python3.9.____cpythonsuffix + + variant + +
osx_64_numpy1.22python3.9.____cpythonsuffix-novec + + variant + +
osx_64_numpy1.23python3.11.____cpythonsuffix + + variant + +
osx_64_numpy1.23python3.11.____cpythonsuffix-novec + + variant + +
osx_arm64_numpy1.22python3.10.____cpythonsuffix + + variant + +
osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec + + variant + +
osx_arm64_numpy1.22python3.8.____cpythonsuffix + + variant + +
osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec + + variant + +
osx_arm64_numpy1.22python3.9.____cpythonsuffix + + variant + +
osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec + + variant + +
osx_arm64_numpy1.23python3.11.____cpythonsuffix + + variant + +
osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec + + variant + +
win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix @@ -40,6 +376,48 @@ Current build status variant
win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix + + variant + +
win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec + + variant + +
win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix + + variant + +
win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec + + variant + +
win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix + + variant + +
win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec + + variant + +
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 93cf692b..6b346f50 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -3,4 +3,6 @@ # -*- mode: yaml -*- jobs: - - template: ./.azure-pipelines/azure-pipelines-win.yml \ No newline at end of file + - template: ./.azure-pipelines/azure-pipelines-linux.yml + - template: ./.azure-pipelines/azure-pipelines-win.yml + - template: ./.azure-pipelines/azure-pipelines-osx.yml \ No newline at end of file diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 49b5943c..39ff3f14 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -22,7 +22,7 @@ build: number: 0 # Since 1.11, power9 seems to be required. # onnxruntime >=1.16.0 requires vs2022 to build, but cuda 11.2 does not support it. - skip: true # [ppc64le or (cuda_compiler_version == "10.2" or cuda_compiler_version == "11.0" or cuda_compiler_version == "11.1" or py!=310 or unix or (win and cuda_compiler_version == "11.2"))] + skip: true # [ppc64le or (cuda_compiler_version == "10.2" or cuda_compiler_version == "11.0" or cuda_compiler_version == "11.1" or (win and cuda_compiler_version == "11.2"))] string: py{{ CONDA_PY }}h{{ PKG_HASH }}_{{ PKG_BUILDNUM }}_{{ build_ext }} ignore_run_exports_from: - zlib From 120d6668e9f3593d1ee101e1cf430d8f337ef670 Mon Sep 17 00:00:00 2001 From: Christian Bourjau Date: Wed, 27 Sep 2023 11:57:28 +0200 Subject: [PATCH 10/12] Remove cudnn entry from conda_build_config --- .azure-pipelines/azure-pipelines-linux.yml | 113 +----- .azure-pipelines/azure-pipelines-osx.yml | 79 ---- .azure-pipelines/azure-pipelines-win.yml | 71 ---- ....22python3.10.____cpythonsuffix-novec.yaml | 2 +- ...numpy1.22python3.10.____cpythonsuffix.yaml | 2 +- ...1.22python3.8.____cpythonsuffix-novec.yaml | 45 --- ...0numpy1.22python3.8.____cpythonsuffix.yaml | 45 --- ...1.22python3.9.____cpythonsuffix-novec.yaml | 45 --- ...0numpy1.22python3.9.____cpythonsuffix.yaml | 45 --- ....23python3.11.____cpythonsuffix-novec.yaml | 45 --- ...numpy1.23python3.11.____cpythonsuffix.yaml | 45 --- ....22python3.10.____cpythonsuffix-novec.yaml | 2 +- ...numpy1.22python3.10.____cpythonsuffix.yaml | 2 +- ...1.22python3.8.____cpythonsuffix-novec.yaml | 45 --- ...2numpy1.22python3.8.____cpythonsuffix.yaml | 45 --- ...1.22python3.9.____cpythonsuffix-novec.yaml | 45 --- ...2numpy1.22python3.9.____cpythonsuffix.yaml | 45 --- ....23python3.11.____cpythonsuffix-novec.yaml | 45 --- ...numpy1.23python3.11.____cpythonsuffix.yaml | 45 --- ...22python3.10.____cpythonsuffix-novec.yaml} | 0 ...umpy1.22python3.10.____cpythonsuffix.yaml} | 0 ...1.22python3.8.____cpythonsuffix-novec.yaml | 49 --- ...0numpy1.22python3.8.____cpythonsuffix.yaml | 49 --- ...1.22python3.9.____cpythonsuffix-novec.yaml | 49 --- ...0numpy1.22python3.9.____cpythonsuffix.yaml | 49 --- ....23python3.11.____cpythonsuffix-novec.yaml | 49 --- ...numpy1.23python3.11.____cpythonsuffix.yaml | 49 --- ...1.22python3.8.____cpythonsuffix-novec.yaml | 49 --- ...2numpy1.22python3.8.____cpythonsuffix.yaml | 49 --- ...1.22python3.9.____cpythonsuffix-novec.yaml | 49 --- ...2numpy1.22python3.9.____cpythonsuffix.yaml | 49 --- ....23python3.11.____cpythonsuffix-novec.yaml | 49 --- ...numpy1.23python3.11.____cpythonsuffix.yaml | 49 --- ...22python3.10.____cpythonsuffix-novec.yaml} | 0 ...umpy1.22python3.10.____cpythonsuffix.yaml} | 0 ....22python3.10.____cpythonsuffix-novec.yaml | 39 -- ...numpy1.22python3.10.____cpythonsuffix.yaml | 39 -- ...1.22python3.8.____cpythonsuffix-novec.yaml | 39 -- ..._numpy1.22python3.8.____cpythonsuffix.yaml | 39 -- ...1.22python3.9.____cpythonsuffix-novec.yaml | 39 -- ..._numpy1.22python3.9.____cpythonsuffix.yaml | 39 -- ....23python3.11.____cpythonsuffix-novec.yaml | 39 -- ...numpy1.23python3.11.____cpythonsuffix.yaml | 39 -- ....22python3.10.____cpythonsuffix-novec.yaml | 37 -- ...numpy1.22python3.10.____cpythonsuffix.yaml | 37 -- ...1.22python3.8.____cpythonsuffix-novec.yaml | 37 -- ..._numpy1.22python3.8.____cpythonsuffix.yaml | 37 -- ...1.22python3.9.____cpythonsuffix-novec.yaml | 37 -- ..._numpy1.22python3.9.____cpythonsuffix.yaml | 37 -- ....23python3.11.____cpythonsuffix-novec.yaml | 37 -- ...numpy1.23python3.11.____cpythonsuffix.yaml | 37 -- ....22python3.10.____cpythonsuffix-novec.yaml | 27 -- ...numpy1.22python3.10.____cpythonsuffix.yaml | 27 -- ...1.22python3.8.____cpythonsuffix-novec.yaml | 27 -- ...enumpy1.22python3.8.____cpythonsuffix.yaml | 27 -- ...1.22python3.9.____cpythonsuffix-novec.yaml | 27 -- ...enumpy1.22python3.9.____cpythonsuffix.yaml | 27 -- ....23python3.11.____cpythonsuffix-novec.yaml | 27 -- ...numpy1.23python3.11.____cpythonsuffix.yaml | 27 -- .scripts/run_osx_build.sh | 94 ----- README.md | 352 +----------------- azure-pipelines.yml | 4 +- recipe/conda_build_config.yaml | 2 - recipe/meta.yaml | 7 +- 64 files changed, 26 insertions(+), 2656 deletions(-) delete mode 100755 .azure-pipelines/azure-pipelines-osx.yml delete mode 100755 .azure-pipelines/azure-pipelines-win.yml delete mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml rename .ci_support/{linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml => linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml} (100%) rename .ci_support/{linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml => linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml} (100%) delete mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml rename .ci_support/{linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml => linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml} (100%) rename .ci_support/{linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml => linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml} (100%) delete mode 100644 .ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix.yaml delete mode 100644 .ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix.yaml delete mode 100644 .ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix.yaml delete mode 100644 .ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec.yaml delete mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix.yaml delete mode 100755 .scripts/run_osx_build.sh diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index ee39e76e..65e6e4fd 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -16,30 +16,6 @@ jobs: CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix: - CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec: - CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix: - CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec: - CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix: - CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec: - CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix: CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix UPLOAD_PACKAGES: 'True' @@ -48,95 +24,22 @@ jobs: CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix: - CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec: - CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix: - CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec: - CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix: - CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec: - CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix - : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix + linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix: + CONFIG: linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec - : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec + ? linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec + : CONFIG: linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix - : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec - : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix - : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec - : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix - : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec - : CONFIG: linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix + linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix: + CONFIG: linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - ? linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec - : CONFIG: linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec + ? linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec + : CONFIG: linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - maxParallel: 29 timeoutInMinutes: 360 steps: diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml deleted file mode 100755 index 56294e7f..00000000 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ /dev/null @@ -1,79 +0,0 @@ -# This file was generated automatically from conda-smithy. To update this configuration, -# update the conda-forge.yml and/or the recipe/meta.yaml. -# -*- mode: yaml -*- - -jobs: -- job: osx - pool: - vmImage: macOS-11 - strategy: - matrix: - osx_64_numpy1.22python3.10.____cpythonsuffix: - CONFIG: osx_64_numpy1.22python3.10.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - osx_64_numpy1.22python3.10.____cpythonsuffix-novec: - CONFIG: osx_64_numpy1.22python3.10.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - osx_64_numpy1.22python3.8.____cpythonsuffix: - CONFIG: osx_64_numpy1.22python3.8.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - osx_64_numpy1.22python3.8.____cpythonsuffix-novec: - CONFIG: osx_64_numpy1.22python3.8.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - osx_64_numpy1.22python3.9.____cpythonsuffix: - CONFIG: osx_64_numpy1.22python3.9.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - osx_64_numpy1.22python3.9.____cpythonsuffix-novec: - CONFIG: osx_64_numpy1.22python3.9.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - osx_64_numpy1.23python3.11.____cpythonsuffix: - CONFIG: osx_64_numpy1.23python3.11.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - osx_64_numpy1.23python3.11.____cpythonsuffix-novec: - CONFIG: osx_64_numpy1.23python3.11.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.22python3.10.____cpythonsuffix: - CONFIG: osx_arm64_numpy1.22python3.10.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec: - CONFIG: osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.22python3.8.____cpythonsuffix: - CONFIG: osx_arm64_numpy1.22python3.8.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec: - CONFIG: osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.22python3.9.____cpythonsuffix: - CONFIG: osx_arm64_numpy1.22python3.9.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec: - CONFIG: osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.23python3.11.____cpythonsuffix: - CONFIG: osx_arm64_numpy1.23python3.11.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec: - CONFIG: osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - maxParallel: 14 - timeoutInMinutes: 360 - - steps: - # TODO: Fast finish on azure pipelines? - - script: | - export CI=azure - export OSX_FORCE_SDK_DOWNLOAD="1" - export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME - export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME}) - if [[ "${BUILD_REASON:-}" == "PullRequest" ]]; then - export IS_PR_BUILD="True" - else - export IS_PR_BUILD="False" - fi - ./.scripts/run_osx_build.sh - displayName: Run OSX build - env: - BINSTAR_TOKEN: $(BINSTAR_TOKEN) - FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) - STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) \ No newline at end of file diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml deleted file mode 100755 index 7306bbaa..00000000 --- a/.azure-pipelines/azure-pipelines-win.yml +++ /dev/null @@ -1,71 +0,0 @@ -# This file was generated automatically from conda-smithy. To update this configuration, -# update the conda-forge.yml and/or the recipe/meta.yaml. -# -*- mode: yaml -*- - -jobs: -- job: win - pool: - vmImage: windows-2022 - strategy: - matrix: - win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix - UPLOAD_PACKAGES: 'True' - win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec: - CONFIG: win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec - UPLOAD_PACKAGES: 'True' - maxParallel: 7 - timeoutInMinutes: 360 - variables: - CONDA_BLD_PATH: D:\\bld\\ - UPLOAD_TEMP: D:\\tmp - - steps: - - - task: PythonScript@0 - displayName: 'Download Miniforge' - inputs: - scriptSource: inline - script: | - import urllib.request - url = 'https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Windows-x86_64.exe' - path = r"$(Build.ArtifactStagingDirectory)/Miniforge.exe" - urllib.request.urlretrieve(url, path) - - - script: | - start /wait "" %BUILD_ARTIFACTSTAGINGDIRECTORY%\Miniforge.exe /InstallationType=JustMe /RegisterPython=0 /S /D=C:\Miniforge - displayName: Install Miniforge - - - powershell: Write-Host "##vso[task.prependpath]C:\Miniforge\Scripts" - displayName: Add conda to PATH - - - script: | - call ".scripts\run_win_build.bat" - displayName: Run Windows build - env: - PYTHONUNBUFFERED: 1 - CONFIG: $(CONFIG) - CI: azure - UPLOAD_PACKAGES: $(UPLOAD_PACKAGES) - UPLOAD_TEMP: $(UPLOAD_TEMP) - BINSTAR_TOKEN: $(BINSTAR_TOKEN) - FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) - STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) \ No newline at end of file diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml index 7771bf9a..533e5dc0 100644 --- a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml +++ b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -13,7 +13,7 @@ cuda_compiler: cuda_compiler_version: - '11.2' cudnn: -- undefined +- '8' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml index 59bd4a19..2431bea3 100644 --- a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml +++ b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml @@ -13,7 +13,7 @@ cuda_compiler: cuda_compiler_version: - '11.2' cudnn: -- undefined +- '8' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml deleted file mode 100644 index ae661560..00000000 --- a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,45 +0,0 @@ -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: -- undefined -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cuda:11.2 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- -novec -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml deleted file mode 100644 index f92b6559..00000000 --- a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml +++ /dev/null @@ -1,45 +0,0 @@ -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: -- undefined -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cuda:11.2 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- '' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml deleted file mode 100644 index 38b44c5a..00000000 --- a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,45 +0,0 @@ -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: -- undefined -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cuda:11.2 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- -novec -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml deleted file mode 100644 index d642e850..00000000 --- a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml +++ /dev/null @@ -1,45 +0,0 @@ -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: -- undefined -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cuda:11.2 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- '' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml deleted file mode 100644 index b528ad48..00000000 --- a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,45 +0,0 @@ -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: -- undefined -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cuda:11.2 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- -novec -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml deleted file mode 100644 index 206099aa..00000000 --- a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml +++ /dev/null @@ -1,45 +0,0 @@ -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: -- undefined -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cuda:11.2 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- '' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml index b21901aa..928f757f 100644 --- a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml +++ b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -13,7 +13,7 @@ cuda_compiler: cuda_compiler_version: - None cudnn: -- undefined +- '8' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml index 7da5bc29..6731d780 100644 --- a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml +++ b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml @@ -13,7 +13,7 @@ cuda_compiler: cuda_compiler_version: - None cudnn: -- undefined +- '8' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml deleted file mode 100644 index 784441e0..00000000 --- a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,45 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos6 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- undefined -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- -novec -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml deleted file mode 100644 index e6fd9535..00000000 --- a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml +++ /dev/null @@ -1,45 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos6 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- undefined -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- '' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml deleted file mode 100644 index 9f75e3b4..00000000 --- a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,45 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos6 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- undefined -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- -novec -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml deleted file mode 100644 index 64fdc92d..00000000 --- a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml +++ /dev/null @@ -1,45 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos6 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- undefined -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- '' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml deleted file mode 100644 index ed8067a0..00000000 --- a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,45 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos6 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- undefined -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- -novec -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml deleted file mode 100644 index 44898935..00000000 --- a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml +++ /dev/null @@ -1,45 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos6 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler: -- None -cuda_compiler_version: -- None -cudnn: -- undefined -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- '' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml similarity index 100% rename from .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml rename to .ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml similarity index 100% rename from .ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml rename to .ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml deleted file mode 100644 index 43530363..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- -novec -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml deleted file mode 100644 index c6c894ca..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- '' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml deleted file mode 100644 index 3f8788a1..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- -novec -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml deleted file mode 100644 index da23c9d5..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- '' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml deleted file mode 100644 index 69ac00b7..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -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 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- -novec -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml deleted file mode 100644 index 96c0948e..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -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 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- '' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml deleted file mode 100644 index 385a27d9..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- -novec -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml deleted file mode 100644 index f9474064..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- '' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml deleted file mode 100644 index 8f3f4a42..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- -novec -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml deleted file mode 100644 index 5c8cb959..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -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 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- '' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml deleted file mode 100644 index c8446f8c..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -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 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- -novec -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml deleted file mode 100644 index 93ac4d28..00000000 --- a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml +++ /dev/null @@ -1,49 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -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 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- '' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version - - cuda_compiler - - cuda_compiler_version - - cdt_name - - docker_image -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml similarity index 100% rename from .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml rename to .ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml similarity index 100% rename from .ci_support/linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml rename to .ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml diff --git a/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix-novec.yaml deleted file mode 100644 index 1c2b252b..00000000 --- a/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,39 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.14' -MACOSX_SDK_VERSION: -- '10.14' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- -novec -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix.yaml deleted file mode 100644 index 419ba80a..00000000 --- a/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix.yaml +++ /dev/null @@ -1,39 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.14' -MACOSX_SDK_VERSION: -- '10.14' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- '' -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix-novec.yaml deleted file mode 100644 index 8e7caec3..00000000 --- a/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,39 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.14' -MACOSX_SDK_VERSION: -- '10.14' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- -novec -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix.yaml deleted file mode 100644 index cba84ef9..00000000 --- a/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix.yaml +++ /dev/null @@ -1,39 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.14' -MACOSX_SDK_VERSION: -- '10.14' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- '' -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix-novec.yaml deleted file mode 100644 index 61e30ec5..00000000 --- a/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,39 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.14' -MACOSX_SDK_VERSION: -- '10.14' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- -novec -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix.yaml deleted file mode 100644 index 6554f01a..00000000 --- a/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix.yaml +++ /dev/null @@ -1,39 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.14' -MACOSX_SDK_VERSION: -- '10.14' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- '' -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix-novec.yaml deleted file mode 100644 index be457ec6..00000000 --- a/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,39 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.14' -MACOSX_SDK_VERSION: -- '10.14' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- -novec -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix.yaml deleted file mode 100644 index 666a870b..00000000 --- a/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix.yaml +++ /dev/null @@ -1,39 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.14' -MACOSX_SDK_VERSION: -- '10.14' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- '' -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec.yaml deleted file mode 100644 index 6d71dc3b..00000000 --- a/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,37 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- -novec -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix.yaml deleted file mode 100644 index 27d6b9a1..00000000 --- a/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix.yaml +++ /dev/null @@ -1,37 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- '' -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec.yaml deleted file mode 100644 index 2bb99115..00000000 --- a/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,37 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- -novec -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix.yaml deleted file mode 100644 index 7b704867..00000000 --- a/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix.yaml +++ /dev/null @@ -1,37 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- '' -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec.yaml deleted file mode 100644 index 6374c418..00000000 --- a/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,37 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- -novec -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix.yaml deleted file mode 100644 index 278721d9..00000000 --- a/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix.yaml +++ /dev/null @@ -1,37 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- '' -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec.yaml deleted file mode 100644 index 78b7a25f..00000000 --- a/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,37 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- -novec -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix.yaml deleted file mode 100644 index 47698dd2..00000000 --- a/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix.yaml +++ /dev/null @@ -1,37 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- '' -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml deleted file mode 100644 index ed0933cb..00000000 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,27 +0,0 @@ -c_compiler: -- vs2022 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- vs2022 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- -novec -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml deleted file mode 100644 index f4ce0948..00000000 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml +++ /dev/null @@ -1,27 +0,0 @@ -c_compiler: -- vs2022 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- vs2022 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -suffix: -- '' -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec.yaml deleted file mode 100644 index 068b7265..00000000 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,27 +0,0 @@ -c_compiler: -- vs2022 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- vs2022 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- -novec -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix.yaml deleted file mode 100644 index 3c15d4ad..00000000 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix.yaml +++ /dev/null @@ -1,27 +0,0 @@ -c_compiler: -- vs2022 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- vs2022 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -suffix: -- '' -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec.yaml deleted file mode 100644 index 6ef8978d..00000000 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,27 +0,0 @@ -c_compiler: -- vs2022 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- vs2022 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- -novec -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix.yaml deleted file mode 100644 index 8ddc9d73..00000000 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix.yaml +++ /dev/null @@ -1,27 +0,0 @@ -c_compiler: -- vs2022 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- vs2022 -numpy: -- '1.22' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -suffix: -- '' -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec.yaml deleted file mode 100644 index 55366d64..00000000 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec.yaml +++ /dev/null @@ -1,27 +0,0 @@ -c_compiler: -- vs2022 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- vs2022 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- -novec -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix.yaml deleted file mode 100644 index 5926e4a3..00000000 --- a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix.yaml +++ /dev/null @@ -1,27 +0,0 @@ -c_compiler: -- vs2022 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cuda_compiler_version: -- None -cxx_compiler: -- vs2022 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -suffix: -- '' -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.scripts/run_osx_build.sh b/.scripts/run_osx_build.sh deleted file mode 100755 index cd9a88f2..00000000 --- a/.scripts/run_osx_build.sh +++ /dev/null @@ -1,94 +0,0 @@ -#!/usr/bin/env bash - -# -*- mode: jinja-shell -*- - -source .scripts/logging_utils.sh - -set -xe - -MINIFORGE_HOME=${MINIFORGE_HOME:-${HOME}/miniforge3} - -( startgroup "Installing a fresh version of Miniforge" ) 2> /dev/null - -MINIFORGE_URL="https://github.com/conda-forge/miniforge/releases/latest/download" -MINIFORGE_FILE="Mambaforge-MacOSX-$(uname -m).sh" -curl -L -O "${MINIFORGE_URL}/${MINIFORGE_FILE}" -rm -rf ${MINIFORGE_HOME} -bash $MINIFORGE_FILE -b -p ${MINIFORGE_HOME} - -( endgroup "Installing a fresh version of Miniforge" ) 2> /dev/null - -( startgroup "Configuring conda" ) 2> /dev/null - -source ${MINIFORGE_HOME}/etc/profile.d/conda.sh -conda activate base - -mamba install --update-specs --quiet --yes --channel conda-forge --strict-channel-priority \ - pip mamba conda-build boa conda-forge-ci-setup=3 -mamba update --update-specs --yes --quiet --channel conda-forge --strict-channel-priority \ - pip mamba conda-build boa conda-forge-ci-setup - - - -echo -e "\n\nSetting up the condarc and mangling the compiler." -setup_conda_rc ./ ./recipe ./.ci_support/${CONFIG}.yaml - -if [[ "${CI:-}" != "" ]]; then - mangle_compiler ./ ./recipe .ci_support/${CONFIG}.yaml -fi - -if [[ "${CI:-}" != "" ]]; then - echo -e "\n\nMangling homebrew in the CI to avoid conflicts." - /usr/bin/sudo mangle_homebrew - /usr/bin/sudo -k -else - echo -e "\n\nNot mangling homebrew as we are not running in CI" -fi - -echo -e "\n\nRunning the build setup script." -source run_conda_forge_build_setup - - - -( endgroup "Configuring conda" ) 2> /dev/null - -echo -e "\n\nMaking the build clobber file" -make_build_number ./ ./recipe ./.ci_support/${CONFIG}.yaml - -if [[ -f LICENSE.txt ]]; then - cp LICENSE.txt "recipe/recipe-scripts-license.txt" -fi - -if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then - if [[ "x${BUILD_OUTPUT_ID:-}" != "x" ]]; then - EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --output-id ${BUILD_OUTPUT_ID}" - fi - conda debug ./recipe -m ./.ci_support/${CONFIG}.yaml \ - ${EXTRA_CB_OPTIONS:-} \ - --clobber-file ./.ci_support/clobber_${CONFIG}.yaml - - # Drop into an interactive shell - /bin/bash -else - - if [[ "${HOST_PLATFORM}" != "${BUILD_PLATFORM}" ]]; then - EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --no-test" - fi - - conda mambabuild ./recipe -m ./.ci_support/${CONFIG}.yaml \ - --suppress-variables ${EXTRA_CB_OPTIONS:-} \ - --clobber-file ./.ci_support/clobber_${CONFIG}.yaml - ( startgroup "Validating outputs" ) 2> /dev/null - - validate_recipe_outputs "${FEEDSTOCK_NAME}" - - ( endgroup "Validating outputs" ) 2> /dev/null - - ( startgroup "Uploading packages" ) 2> /dev/null - - if [[ "${UPLOAD_PACKAGES}" != "False" ]] && [[ "${IS_PR_BUILD}" == "False" ]]; then - upload_package --validate --feedstock-name="${FEEDSTOCK_NAME}" ./ ./recipe ./.ci_support/${CONFIG}.yaml - fi - - ( endgroup "Uploading packages" ) 2> /dev/null -fi \ No newline at end of file diff --git a/README.md b/README.md index 48656c1b..46b0a6d6 100644 --- a/README.md +++ b/README.md @@ -40,48 +40,6 @@ Current build status variant - - linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix - - - variant - - - - linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec - - - variant - - - - linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix - - - variant - - - - linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec - - - variant - - - - linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix - - - variant - - - - linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec - - - variant - - linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix @@ -97,325 +55,31 @@ Current build status - linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix - - - variant - - - - linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec - - - variant - - - - linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix - - - variant - - - - linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec - - - variant - - - - linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix - - - variant - - - - linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec - - - variant - - - - linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix - - - variant - - - - linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec - - - variant - - - - linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix - - - variant - - - - linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec - - - variant - - - - linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix - - - variant - - - - linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec - - - variant - - - - linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix - - - variant - - - - linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec - - - variant - - - - linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix - - - variant - - - - linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec - - - variant - - - - linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix - - - variant - - - - linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec - - - variant - - - - linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix - - - variant - - - - linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec - - - variant - - - - linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix - - - variant - - - - linux_aarch64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec - - - variant - - - - osx_64_numpy1.22python3.10.____cpythonsuffix - - - variant - - - - osx_64_numpy1.22python3.10.____cpythonsuffix-novec - - - variant - - - - osx_64_numpy1.22python3.8.____cpythonsuffix - - - variant - - - - osx_64_numpy1.22python3.8.____cpythonsuffix-novec - - - variant - - - - osx_64_numpy1.22python3.9.____cpythonsuffix - - - variant - - - - osx_64_numpy1.22python3.9.____cpythonsuffix-novec - - - variant - - - - osx_64_numpy1.23python3.11.____cpythonsuffix - - - variant - - - - osx_64_numpy1.23python3.11.____cpythonsuffix-novec - - - variant - - - - osx_arm64_numpy1.22python3.10.____cpythonsuffix - - - variant - - - - osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec - - - variant - - - - osx_arm64_numpy1.22python3.8.____cpythonsuffix - - - variant - - - - osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec - - - variant - - - - osx_arm64_numpy1.22python3.9.____cpythonsuffix - - - variant - - - - osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec - - - variant - - - - osx_arm64_numpy1.23python3.11.____cpythonsuffix - - - variant - - - - osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec - - - variant - - - - win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix - - - variant - - - - win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec - - - variant - - - - win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix - - - variant - - - - win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec - - - variant - - - - win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix + linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix - variant + variant - win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec + linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec - variant + variant - win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix + linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix - variant + variant - win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec + linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec - variant + variant diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6b346f50..ad85a2cc 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -3,6 +3,4 @@ # -*- mode: yaml -*- jobs: - - template: ./.azure-pipelines/azure-pipelines-linux.yml - - template: ./.azure-pipelines/azure-pipelines-win.yml - - template: ./.azure-pipelines/azure-pipelines-osx.yml \ No newline at end of file + - template: ./.azure-pipelines/azure-pipelines-linux.yml \ No newline at end of file diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml index b184880b..21f20f22 100644 --- a/recipe/conda_build_config.yaml +++ b/recipe/conda_build_config.yaml @@ -5,8 +5,6 @@ MACOSX_SDK_VERSION: # [osx and x86_64] suffix: - "" - "-novec" -cudnn: # [linux64] - - undefined # [linux64] cuda_compiler_version: # [linux64] - None # [linux64] docker_image: # [linux64] diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 39ff3f14..f01a84c5 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -20,9 +20,12 @@ source: build: number: 0 + # skip: true # [ppc64le or (cuda_compiler_version == "10.2" or cuda_compiler_version == "11.0" or cuda_compiler_version == "11.1" or win or osx or py!=3.9 or (win and cuda_compiler_version == "11.2"))] # Since 1.11, power9 seems to be required. - # onnxruntime >=1.16.0 requires vs2022 to build, but cuda 11.2 does not support it. - skip: true # [ppc64le or (cuda_compiler_version == "10.2" or cuda_compiler_version == "11.0" or cuda_compiler_version == "11.1" or (win and cuda_compiler_version == "11.2"))] + skip: true # [ppc64le] + skip: true # [cuda_compiler_version == "10.2" or cuda_compiler_version == "11.0" or cuda_compiler_version == "11.1"] + skip: true # [win and cuda_compiler_version == "11.2"] onnxruntime >=1.16.0 requires vs2022 to build, but cuda 11.2 does not support it. + skip: true # [win or osx or py!=310] string: py{{ CONDA_PY }}h{{ PKG_HASH }}_{{ PKG_BUILDNUM }}_{{ build_ext }} ignore_run_exports_from: - zlib From 2e4dc911be741a4c7f8a510b28525f4c6eda43b3 Mon Sep 17 00:00:00 2001 From: Christian Bourjau Date: Wed, 27 Sep 2023 12:30:32 +0200 Subject: [PATCH 11/12] Add explicit cudnn version --- recipe/conda_build_config.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml index 21f20f22..e5637402 100644 --- a/recipe/conda_build_config.yaml +++ b/recipe/conda_build_config.yaml @@ -5,6 +5,8 @@ MACOSX_SDK_VERSION: # [osx and x86_64] suffix: - "" - "-novec" +cudnn: # [linux64] + - "8" # [linux64] cuda_compiler_version: # [linux64] - None # [linux64] docker_image: # [linux64] From ea9f73ae233684978c88533ff492eae9e80312b9 Mon Sep 17 00:00:00 2001 From: Christian Bourjau Date: Wed, 27 Sep 2023 15:54:20 +0200 Subject: [PATCH 12/12] Re-enable builds for all variants --- .azure-pipelines/azure-pipelines-linux.yml | 113 +++++- .azure-pipelines/azure-pipelines-osx.yml | 79 ++++ .azure-pipelines/azure-pipelines-win.yml | 71 ++++ ...22python3.10.____cpythonsuffix-novec.yaml} | 0 ...umpy1.22python3.10.____cpythonsuffix.yaml} | 0 ...1.22python3.8.____cpythonsuffix-novec.yaml | 45 +++ ...0numpy1.22python3.8.____cpythonsuffix.yaml | 45 +++ ...1.22python3.9.____cpythonsuffix-novec.yaml | 45 +++ ...0numpy1.22python3.9.____cpythonsuffix.yaml | 45 +++ ....23python3.11.____cpythonsuffix-novec.yaml | 45 +++ ...numpy1.23python3.11.____cpythonsuffix.yaml | 45 +++ ...22python3.10.____cpythonsuffix-novec.yaml} | 0 ...umpy1.22python3.10.____cpythonsuffix.yaml} | 0 ...1.22python3.8.____cpythonsuffix-novec.yaml | 45 +++ ...2numpy1.22python3.8.____cpythonsuffix.yaml | 45 +++ ...1.22python3.9.____cpythonsuffix-novec.yaml | 45 +++ ...2numpy1.22python3.9.____cpythonsuffix.yaml | 45 +++ ....23python3.11.____cpythonsuffix-novec.yaml | 45 +++ ...numpy1.23python3.11.____cpythonsuffix.yaml | 45 +++ ...1.22python3.8.____cpythonsuffix-novec.yaml | 49 +++ ...0numpy1.22python3.8.____cpythonsuffix.yaml | 49 +++ ...1.22python3.9.____cpythonsuffix-novec.yaml | 49 +++ ...0numpy1.22python3.9.____cpythonsuffix.yaml | 49 +++ ....23python3.11.____cpythonsuffix-novec.yaml | 49 +++ ...numpy1.23python3.11.____cpythonsuffix.yaml | 49 +++ ...1.22python3.8.____cpythonsuffix-novec.yaml | 49 +++ ...2numpy1.22python3.8.____cpythonsuffix.yaml | 49 +++ ...1.22python3.9.____cpythonsuffix-novec.yaml | 49 +++ ...2numpy1.22python3.9.____cpythonsuffix.yaml | 49 +++ ....23python3.11.____cpythonsuffix-novec.yaml | 49 +++ ...numpy1.23python3.11.____cpythonsuffix.yaml | 49 +++ ....22python3.10.____cpythonsuffix-novec.yaml | 39 ++ ...numpy1.22python3.10.____cpythonsuffix.yaml | 39 ++ ...1.22python3.8.____cpythonsuffix-novec.yaml | 39 ++ ..._numpy1.22python3.8.____cpythonsuffix.yaml | 39 ++ ...1.22python3.9.____cpythonsuffix-novec.yaml | 39 ++ ..._numpy1.22python3.9.____cpythonsuffix.yaml | 39 ++ ....23python3.11.____cpythonsuffix-novec.yaml | 39 ++ ...numpy1.23python3.11.____cpythonsuffix.yaml | 39 ++ ....22python3.10.____cpythonsuffix-novec.yaml | 37 ++ ...numpy1.22python3.10.____cpythonsuffix.yaml | 37 ++ ...1.22python3.8.____cpythonsuffix-novec.yaml | 37 ++ ..._numpy1.22python3.8.____cpythonsuffix.yaml | 37 ++ ...1.22python3.9.____cpythonsuffix-novec.yaml | 37 ++ ..._numpy1.22python3.9.____cpythonsuffix.yaml | 37 ++ ....23python3.11.____cpythonsuffix-novec.yaml | 37 ++ ...numpy1.23python3.11.____cpythonsuffix.yaml | 37 ++ ....22python3.10.____cpythonsuffix-novec.yaml | 27 ++ ...numpy1.22python3.10.____cpythonsuffix.yaml | 27 ++ ...1.22python3.8.____cpythonsuffix-novec.yaml | 27 ++ ...enumpy1.22python3.8.____cpythonsuffix.yaml | 27 ++ ...1.22python3.9.____cpythonsuffix-novec.yaml | 27 ++ ...enumpy1.22python3.9.____cpythonsuffix.yaml | 27 ++ ....23python3.11.____cpythonsuffix-novec.yaml | 27 ++ ...numpy1.23python3.11.____cpythonsuffix.yaml | 27 ++ .scripts/run_osx_build.sh | 94 +++++ README.md | 352 +++++++++++++++++- azure-pipelines.yml | 4 +- recipe/meta.yaml | 1 - 59 files changed, 2648 insertions(+), 18 deletions(-) create mode 100755 .azure-pipelines/azure-pipelines-osx.yml create mode 100755 .azure-pipelines/azure-pipelines-win.yml rename .ci_support/{linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml => linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml} (100%) rename .ci_support/{linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml => linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml} (100%) create mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml rename .ci_support/{linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml => linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml} (100%) rename .ci_support/{linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml => linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml} (100%) create mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml create mode 100644 .ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix.yaml create mode 100644 .ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix.yaml create mode 100644 .ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix.yaml create mode 100644 .ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix.yaml create mode 100644 .ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix.yaml create mode 100644 .ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix.yaml create mode 100644 .ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix.yaml create mode 100644 .ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix.yaml create mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml create mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix.yaml create mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix.yaml create mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec.yaml create mode 100644 .ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix.yaml create mode 100755 .scripts/run_osx_build.sh diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index 65e6e4fd..230aa6ed 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -8,20 +8,68 @@ jobs: vmImage: ubuntu-latest strategy: matrix: - linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix: - CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix + ? linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix + : CONFIG: linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec: - CONFIG: linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec + ? linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec + : CONFIG: linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 - linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix: - CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix + ? linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix + : CONFIG: linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec + : CONFIG: linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix + : CONFIG: linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec + : CONFIG: linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix + : CONFIG: linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec + : CONFIG: linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix + : CONFIG: linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec + : CONFIG: linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix + : CONFIG: linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec + : CONFIG: linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix + : CONFIG: linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec + : CONFIG: linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix + : CONFIG: linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec: - CONFIG: linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec + ? linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec + : CONFIG: linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix: @@ -32,6 +80,30 @@ jobs: : CONFIG: linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix: + CONFIG: linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec + : CONFIG: linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix: + CONFIG: linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec + : CONFIG: linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix: + CONFIG: linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 + ? linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec + : CONFIG: linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cuda:11.2 linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix: CONFIG: linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix UPLOAD_PACKAGES: 'True' @@ -40,6 +112,31 @@ jobs: : CONFIG: linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix: + CONFIG: linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec + : CONFIG: linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix: + CONFIG: linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec + : CONFIG: linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix: + CONFIG: linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + ? linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec + : CONFIG: linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + maxParallel: 29 timeoutInMinutes: 360 steps: diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml new file mode 100755 index 00000000..56294e7f --- /dev/null +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -0,0 +1,79 @@ +# This file was generated automatically from conda-smithy. To update this configuration, +# update the conda-forge.yml and/or the recipe/meta.yaml. +# -*- mode: yaml -*- + +jobs: +- job: osx + pool: + vmImage: macOS-11 + strategy: + matrix: + osx_64_numpy1.22python3.10.____cpythonsuffix: + CONFIG: osx_64_numpy1.22python3.10.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + osx_64_numpy1.22python3.10.____cpythonsuffix-novec: + CONFIG: osx_64_numpy1.22python3.10.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + osx_64_numpy1.22python3.8.____cpythonsuffix: + CONFIG: osx_64_numpy1.22python3.8.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + osx_64_numpy1.22python3.8.____cpythonsuffix-novec: + CONFIG: osx_64_numpy1.22python3.8.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + osx_64_numpy1.22python3.9.____cpythonsuffix: + CONFIG: osx_64_numpy1.22python3.9.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + osx_64_numpy1.22python3.9.____cpythonsuffix-novec: + CONFIG: osx_64_numpy1.22python3.9.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + osx_64_numpy1.23python3.11.____cpythonsuffix: + CONFIG: osx_64_numpy1.23python3.11.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + osx_64_numpy1.23python3.11.____cpythonsuffix-novec: + CONFIG: osx_64_numpy1.23python3.11.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + osx_arm64_numpy1.22python3.10.____cpythonsuffix: + CONFIG: osx_arm64_numpy1.22python3.10.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec: + CONFIG: osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + osx_arm64_numpy1.22python3.8.____cpythonsuffix: + CONFIG: osx_arm64_numpy1.22python3.8.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec: + CONFIG: osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + osx_arm64_numpy1.22python3.9.____cpythonsuffix: + CONFIG: osx_arm64_numpy1.22python3.9.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec: + CONFIG: osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + osx_arm64_numpy1.23python3.11.____cpythonsuffix: + CONFIG: osx_arm64_numpy1.23python3.11.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec: + CONFIG: osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + maxParallel: 14 + timeoutInMinutes: 360 + + steps: + # TODO: Fast finish on azure pipelines? + - script: | + export CI=azure + export OSX_FORCE_SDK_DOWNLOAD="1" + export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME + export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME}) + if [[ "${BUILD_REASON:-}" == "PullRequest" ]]; then + export IS_PR_BUILD="True" + else + export IS_PR_BUILD="False" + fi + ./.scripts/run_osx_build.sh + displayName: Run OSX build + env: + BINSTAR_TOKEN: $(BINSTAR_TOKEN) + FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) + STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) \ No newline at end of file diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml new file mode 100755 index 00000000..7306bbaa --- /dev/null +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -0,0 +1,71 @@ +# This file was generated automatically from conda-smithy. To update this configuration, +# update the conda-forge.yml and/or the recipe/meta.yaml. +# -*- mode: yaml -*- + +jobs: +- job: win + pool: + vmImage: windows-2022 + strategy: + matrix: + win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix + UPLOAD_PACKAGES: 'True' + win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec + UPLOAD_PACKAGES: 'True' + maxParallel: 7 + timeoutInMinutes: 360 + variables: + CONDA_BLD_PATH: D:\\bld\\ + UPLOAD_TEMP: D:\\tmp + + steps: + + - task: PythonScript@0 + displayName: 'Download Miniforge' + inputs: + scriptSource: inline + script: | + import urllib.request + url = 'https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Windows-x86_64.exe' + path = r"$(Build.ArtifactStagingDirectory)/Miniforge.exe" + urllib.request.urlretrieve(url, path) + + - script: | + start /wait "" %BUILD_ARTIFACTSTAGINGDIRECTORY%\Miniforge.exe /InstallationType=JustMe /RegisterPython=0 /S /D=C:\Miniforge + displayName: Install Miniforge + + - powershell: Write-Host "##vso[task.prependpath]C:\Miniforge\Scripts" + displayName: Add conda to PATH + + - script: | + call ".scripts\run_win_build.bat" + displayName: Run Windows build + env: + PYTHONUNBUFFERED: 1 + CONFIG: $(CONFIG) + CI: azure + UPLOAD_PACKAGES: $(UPLOAD_PACKAGES) + UPLOAD_TEMP: $(UPLOAD_TEMP) + BINSTAR_TOKEN: $(BINSTAR_TOKEN) + FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) + STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) \ No newline at end of file diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml similarity index 100% rename from .ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml rename to .ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec.yaml diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml similarity index 100% rename from .ci_support/linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml rename to .ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix.yaml diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..7c7b6439 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml @@ -0,0 +1,45 @@ +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- -novec +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml new file mode 100644 index 00000000..7310631c --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml @@ -0,0 +1,45 @@ +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- '' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..4f91c979 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml @@ -0,0 +1,45 @@ +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- -novec +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml new file mode 100644 index 00000000..128f5b92 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml @@ -0,0 +1,45 @@ +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- '' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..02ab6f90 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml @@ -0,0 +1,45 @@ +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 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- -novec +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml new file mode 100644 index 00000000..c21a2f97 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml @@ -0,0 +1,45 @@ +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 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- '' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml similarity index 100% rename from .ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml rename to .ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec.yaml diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml similarity index 100% rename from .ci_support/linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml rename to .ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix.yaml diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..1cfc914c --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml @@ -0,0 +1,45 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- -novec +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml new file mode 100644 index 00000000..533a3560 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml @@ -0,0 +1,45 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- '' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..74e2cd84 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml @@ -0,0 +1,45 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- -novec +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml new file mode 100644 index 00000000..53f367f0 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml @@ -0,0 +1,45 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- '' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..e5cf9a59 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml @@ -0,0 +1,45 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +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 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- -novec +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml new file mode 100644 index 00000000..0bce1256 --- /dev/null +++ b/.ci_support/linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml @@ -0,0 +1,45 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +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 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- '' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..43530363 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- -novec +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml new file mode 100644 index 00000000..c6c894ca --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- '' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..3f8788a1 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- -novec +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml new file mode 100644 index 00000000..da23c9d5 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- '' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..69ac00b7 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +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 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- -novec +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml new file mode 100644 index 00000000..96c0948e --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +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 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- '' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..385a27d9 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- -novec +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml new file mode 100644 index 00000000..f9474064 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- '' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..8f3f4a42 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- -novec +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml new file mode 100644 index 00000000..5c8cb959 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +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 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- '' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..c8446f8c --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +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 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- -novec +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml new file mode 100644 index 00000000..93ac4d28 --- /dev/null +++ b/.ci_support/linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix.yaml @@ -0,0 +1,49 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +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 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- '' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version + - cuda_compiler + - cuda_compiler_version + - cdt_name + - docker_image +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..1c2b252b --- /dev/null +++ b/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -0,0 +1,39 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.14' +MACOSX_SDK_VERSION: +- '10.14' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- -novec +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix.yaml new file mode 100644 index 00000000..419ba80a --- /dev/null +++ b/.ci_support/osx_64_numpy1.22python3.10.____cpythonsuffix.yaml @@ -0,0 +1,39 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.14' +MACOSX_SDK_VERSION: +- '10.14' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- '' +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..8e7caec3 --- /dev/null +++ b/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix-novec.yaml @@ -0,0 +1,39 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.14' +MACOSX_SDK_VERSION: +- '10.14' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- -novec +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix.yaml new file mode 100644 index 00000000..cba84ef9 --- /dev/null +++ b/.ci_support/osx_64_numpy1.22python3.8.____cpythonsuffix.yaml @@ -0,0 +1,39 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.14' +MACOSX_SDK_VERSION: +- '10.14' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- '' +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..61e30ec5 --- /dev/null +++ b/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix-novec.yaml @@ -0,0 +1,39 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.14' +MACOSX_SDK_VERSION: +- '10.14' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- -novec +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix.yaml new file mode 100644 index 00000000..6554f01a --- /dev/null +++ b/.ci_support/osx_64_numpy1.22python3.9.____cpythonsuffix.yaml @@ -0,0 +1,39 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.14' +MACOSX_SDK_VERSION: +- '10.14' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- '' +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..be457ec6 --- /dev/null +++ b/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix-novec.yaml @@ -0,0 +1,39 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.14' +MACOSX_SDK_VERSION: +- '10.14' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- -novec +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix.yaml new file mode 100644 index 00000000..666a870b --- /dev/null +++ b/.ci_support/osx_64_numpy1.23python3.11.____cpythonsuffix.yaml @@ -0,0 +1,39 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.14' +MACOSX_SDK_VERSION: +- '10.14' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- '' +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..6d71dc3b --- /dev/null +++ b/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -0,0 +1,37 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- -novec +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix.yaml new file mode 100644 index 00000000..27d6b9a1 --- /dev/null +++ b/.ci_support/osx_arm64_numpy1.22python3.10.____cpythonsuffix.yaml @@ -0,0 +1,37 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- '' +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..2bb99115 --- /dev/null +++ b/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec.yaml @@ -0,0 +1,37 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- -novec +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix.yaml new file mode 100644 index 00000000..7b704867 --- /dev/null +++ b/.ci_support/osx_arm64_numpy1.22python3.8.____cpythonsuffix.yaml @@ -0,0 +1,37 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- '' +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..6374c418 --- /dev/null +++ b/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec.yaml @@ -0,0 +1,37 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- -novec +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix.yaml new file mode 100644 index 00000000..278721d9 --- /dev/null +++ b/.ci_support/osx_arm64_numpy1.22python3.9.____cpythonsuffix.yaml @@ -0,0 +1,37 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- '' +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..78b7a25f --- /dev/null +++ b/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec.yaml @@ -0,0 +1,37 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- -novec +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix.yaml new file mode 100644 index 00000000..47698dd2 --- /dev/null +++ b/.ci_support/osx_arm64_numpy1.23python3.11.____cpythonsuffix.yaml @@ -0,0 +1,37 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- '' +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..ed0933cb --- /dev/null +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec.yaml @@ -0,0 +1,27 @@ +c_compiler: +- vs2022 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- vs2022 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- -novec +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml new file mode 100644 index 00000000..f4ce0948 --- /dev/null +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix.yaml @@ -0,0 +1,27 @@ +c_compiler: +- vs2022 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- vs2022 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +suffix: +- '' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..068b7265 --- /dev/null +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec.yaml @@ -0,0 +1,27 @@ +c_compiler: +- vs2022 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- vs2022 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- -novec +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix.yaml new file mode 100644 index 00000000..3c15d4ad --- /dev/null +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix.yaml @@ -0,0 +1,27 @@ +c_compiler: +- vs2022 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- vs2022 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +suffix: +- '' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..6ef8978d --- /dev/null +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec.yaml @@ -0,0 +1,27 @@ +c_compiler: +- vs2022 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- vs2022 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- -novec +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix.yaml new file mode 100644 index 00000000..8ddc9d73 --- /dev/null +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix.yaml @@ -0,0 +1,27 @@ +c_compiler: +- vs2022 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- vs2022 +numpy: +- '1.22' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +suffix: +- '' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec.yaml new file mode 100644 index 00000000..55366d64 --- /dev/null +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec.yaml @@ -0,0 +1,27 @@ +c_compiler: +- vs2022 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- vs2022 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- -novec +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix.yaml new file mode 100644 index 00000000..5926e4a3 --- /dev/null +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix.yaml @@ -0,0 +1,27 @@ +c_compiler: +- vs2022 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cuda_compiler_version: +- None +cxx_compiler: +- vs2022 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +suffix: +- '' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.scripts/run_osx_build.sh b/.scripts/run_osx_build.sh new file mode 100755 index 00000000..cd9a88f2 --- /dev/null +++ b/.scripts/run_osx_build.sh @@ -0,0 +1,94 @@ +#!/usr/bin/env bash + +# -*- mode: jinja-shell -*- + +source .scripts/logging_utils.sh + +set -xe + +MINIFORGE_HOME=${MINIFORGE_HOME:-${HOME}/miniforge3} + +( startgroup "Installing a fresh version of Miniforge" ) 2> /dev/null + +MINIFORGE_URL="https://github.com/conda-forge/miniforge/releases/latest/download" +MINIFORGE_FILE="Mambaforge-MacOSX-$(uname -m).sh" +curl -L -O "${MINIFORGE_URL}/${MINIFORGE_FILE}" +rm -rf ${MINIFORGE_HOME} +bash $MINIFORGE_FILE -b -p ${MINIFORGE_HOME} + +( endgroup "Installing a fresh version of Miniforge" ) 2> /dev/null + +( startgroup "Configuring conda" ) 2> /dev/null + +source ${MINIFORGE_HOME}/etc/profile.d/conda.sh +conda activate base + +mamba install --update-specs --quiet --yes --channel conda-forge --strict-channel-priority \ + pip mamba conda-build boa conda-forge-ci-setup=3 +mamba update --update-specs --yes --quiet --channel conda-forge --strict-channel-priority \ + pip mamba conda-build boa conda-forge-ci-setup + + + +echo -e "\n\nSetting up the condarc and mangling the compiler." +setup_conda_rc ./ ./recipe ./.ci_support/${CONFIG}.yaml + +if [[ "${CI:-}" != "" ]]; then + mangle_compiler ./ ./recipe .ci_support/${CONFIG}.yaml +fi + +if [[ "${CI:-}" != "" ]]; then + echo -e "\n\nMangling homebrew in the CI to avoid conflicts." + /usr/bin/sudo mangle_homebrew + /usr/bin/sudo -k +else + echo -e "\n\nNot mangling homebrew as we are not running in CI" +fi + +echo -e "\n\nRunning the build setup script." +source run_conda_forge_build_setup + + + +( endgroup "Configuring conda" ) 2> /dev/null + +echo -e "\n\nMaking the build clobber file" +make_build_number ./ ./recipe ./.ci_support/${CONFIG}.yaml + +if [[ -f LICENSE.txt ]]; then + cp LICENSE.txt "recipe/recipe-scripts-license.txt" +fi + +if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then + if [[ "x${BUILD_OUTPUT_ID:-}" != "x" ]]; then + EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --output-id ${BUILD_OUTPUT_ID}" + fi + conda debug ./recipe -m ./.ci_support/${CONFIG}.yaml \ + ${EXTRA_CB_OPTIONS:-} \ + --clobber-file ./.ci_support/clobber_${CONFIG}.yaml + + # Drop into an interactive shell + /bin/bash +else + + if [[ "${HOST_PLATFORM}" != "${BUILD_PLATFORM}" ]]; then + EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --no-test" + fi + + conda mambabuild ./recipe -m ./.ci_support/${CONFIG}.yaml \ + --suppress-variables ${EXTRA_CB_OPTIONS:-} \ + --clobber-file ./.ci_support/clobber_${CONFIG}.yaml + ( startgroup "Validating outputs" ) 2> /dev/null + + validate_recipe_outputs "${FEEDSTOCK_NAME}" + + ( endgroup "Validating outputs" ) 2> /dev/null + + ( startgroup "Uploading packages" ) 2> /dev/null + + if [[ "${UPLOAD_PACKAGES}" != "False" ]] && [[ "${IS_PR_BUILD}" == "False" ]]; then + upload_package --validate --feedstock-name="${FEEDSTOCK_NAME}" ./ ./recipe ./.ci_support/${CONFIG}.yaml + fi + + ( endgroup "Uploading packages" ) 2> /dev/null +fi \ No newline at end of file diff --git a/README.md b/README.md index 46b0a6d6..571e2d75 100644 --- a/README.md +++ b/README.md @@ -27,31 +27,115 @@ Current build status - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -68,6 +152,48 @@ Current build status variant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
VariantStatus
linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffixlinux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix - variant + variant
linux_64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-noveclinux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.10.____cpythonsuffix-novec - variant + variant
linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffixlinux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix - variant + variant
linux_64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-noveclinux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec - variant + variant + +
linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix + + variant + +
linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec + + variant + +
linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix + + variant + +
linux_64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec + + variant + +
linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix + + variant + +
linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix-novec + + variant + +
linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix + + variant + +
linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec + + variant + +
linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix + + variant + +
linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec + + variant + +
linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix + + variant + +
linux_64_c_compiler_version12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec + + variant
linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix + + variant + +
linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.8.____cpythonsuffix-novec + + variant + +
linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix + + variant + +
linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.22python3.9.____cpythonsuffix-novec + + variant + +
linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix + + variant + +
linux_aarch64_c_compiler_version10cuda_compiler_version11.2cxx_compiler_version10numpy1.23python3.11.____cpythonsuffix-novec + + variant + +
linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.10.____cpythonsuffix @@ -82,6 +208,216 @@ Current build status variant
linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix + + variant + +
linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpythonsuffix-novec + + variant + +
linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix + + variant + +
linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.9.____cpythonsuffix-novec + + variant + +
linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix + + variant + +
linux_aarch64_c_compiler_version12cuda_compiler_versionNonecxx_compiler_version12numpy1.23python3.11.____cpythonsuffix-novec + + variant + +
osx_64_numpy1.22python3.10.____cpythonsuffix + + variant + +
osx_64_numpy1.22python3.10.____cpythonsuffix-novec + + variant + +
osx_64_numpy1.22python3.8.____cpythonsuffix + + variant + +
osx_64_numpy1.22python3.8.____cpythonsuffix-novec + + variant + +
osx_64_numpy1.22python3.9.____cpythonsuffix + + variant + +
osx_64_numpy1.22python3.9.____cpythonsuffix-novec + + variant + +
osx_64_numpy1.23python3.11.____cpythonsuffix + + variant + +
osx_64_numpy1.23python3.11.____cpythonsuffix-novec + + variant + +
osx_arm64_numpy1.22python3.10.____cpythonsuffix + + variant + +
osx_arm64_numpy1.22python3.10.____cpythonsuffix-novec + + variant + +
osx_arm64_numpy1.22python3.8.____cpythonsuffix + + variant + +
osx_arm64_numpy1.22python3.8.____cpythonsuffix-novec + + variant + +
osx_arm64_numpy1.22python3.9.____cpythonsuffix + + variant + +
osx_arm64_numpy1.22python3.9.____cpythonsuffix-novec + + variant + +
osx_arm64_numpy1.23python3.11.____cpythonsuffix + + variant + +
osx_arm64_numpy1.23python3.11.____cpythonsuffix-novec + + variant + +
win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix + + variant + +
win_64_cuda_compiler_versionNonenumpy1.22python3.10.____cpythonsuffix-novec + + variant + +
win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix + + variant + +
win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpythonsuffix-novec + + variant + +
win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix + + variant + +
win_64_cuda_compiler_versionNonenumpy1.22python3.9.____cpythonsuffix-novec + + variant + +
win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix + + variant + +
win_64_cuda_compiler_versionNonenumpy1.23python3.11.____cpythonsuffix-novec + + variant + +
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ad85a2cc..6b346f50 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -3,4 +3,6 @@ # -*- mode: yaml -*- jobs: - - template: ./.azure-pipelines/azure-pipelines-linux.yml \ No newline at end of file + - template: ./.azure-pipelines/azure-pipelines-linux.yml + - template: ./.azure-pipelines/azure-pipelines-win.yml + - template: ./.azure-pipelines/azure-pipelines-osx.yml \ No newline at end of file diff --git a/recipe/meta.yaml b/recipe/meta.yaml index f01a84c5..0c9b25af 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -25,7 +25,6 @@ build: skip: true # [ppc64le] skip: true # [cuda_compiler_version == "10.2" or cuda_compiler_version == "11.0" or cuda_compiler_version == "11.1"] skip: true # [win and cuda_compiler_version == "11.2"] onnxruntime >=1.16.0 requires vs2022 to build, but cuda 11.2 does not support it. - skip: true # [win or osx or py!=310] string: py{{ CONDA_PY }}h{{ PKG_HASH }}_{{ PKG_BUILDNUM }}_{{ build_ext }} ignore_run_exports_from: - zlib