From 231a2f990878f5279d8a07ca532bbdfa159d8a30 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Fri, 26 Jun 2020 18:09:17 +0200 Subject: [PATCH 1/5] try CI with all blas variants --- recipe/conda_build_config.yaml | 10 ++++++---- recipe/meta.yaml | 2 ++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml index 55fb7d7c..758c554b 100644 --- a/recipe/conda_build_config.yaml +++ b/recipe/conda_build_config.yaml @@ -1,4 +1,6 @@ -c_compiler: # [win] - - vs2019 # [win] -cxx_compiler: # [win] - - vs2019 # [win] +blas_impl: + - accelerate # [osx] + - netlib + - openblas + - mkl # [x86_64] + - blis # [x86_64] diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 8546238a..5d48fea9 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -125,6 +125,8 @@ test: - pytest-timeout - pytest-xdist - mpmath + # make sure we test with all blas implementations + - libblas =*=*{{ blas_impl }} commands: # show SIMD features (some failures occur depending on presence/absence of e.g. AVX512) - python -c "import numpy; numpy.show_config()" From 3681795a157b040a77fdadac2fa6468d252cb788 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Sat, 7 Aug 2021 19:17:17 +0200 Subject: [PATCH 2/5] distinguish mkl/openblas runs for avx512 presence/absence --- recipe/conda_build_config.yaml | 23 +++++++++++++++++++++-- recipe/meta.yaml | 2 ++ 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml index 758c554b..fa41c76e 100644 --- a/recipe/conda_build_config.yaml +++ b/recipe/conda_build_config.yaml @@ -1,6 +1,25 @@ blas_impl: - accelerate # [osx] - netlib - - openblas - - mkl # [x86_64] + - openblas # [not (x86_64 and not osx)] - blis # [x86_64] + - mkl # [x86_64 and osx] + - openblas # [x86_64 and not osx] + - openblas # [x86_64 and not osx] + - mkl # [x86_64 and not osx] + - mkl # [x86_64 and not osx] + +enforce_avx512: + - None # [osx] + - None + - None # [not (x86_64 and not osx)] + - None # [x86_64] + - None # [x86_64 and osx] + - present # [x86_64 and not osx] + - absent # [x86_64 and not osx] + - present # [x86_64 and not osx] + - absent # [x86_64 and not osx] + +zip_keys: + - - blas_impl + - enforce_avx512 diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 5d48fea9..4a2f3122 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -130,6 +130,8 @@ test: commands: # show SIMD features (some failures occur depending on presence/absence of e.g. AVX512) - python -c "import numpy; numpy.show_config()" + - python -c "import sys; import numpy; sys.exit(0 if 'AVX512F? AVX512CD?' in numpy.lib.utils._opt_info() else 1)" # [enforce_avx512 == "absent" and blas_impl in ("mkl", "openblas")] + - python -c "import sys; import numpy; sys.exit(0 if 'AVX512F* AVX512CD*' in numpy.lib.utils._opt_info() else 1)" # [enforce_avx512 == "present" and blas_impl in ("mkl", "openblas")] # the tests ppc64le and aarch64 are currently run through emulation in QEMU; # since this takes much longer, do not run the most heavy-weight tests, i.e. use # label='fast'; same for PyPy due to huge runtime; otherwise set label='full' From 23051c02f3c14f253c64768e276bc0c5b20c27e4 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Sat, 7 Aug 2021 22:44:14 +0200 Subject: [PATCH 3/5] enable setting pagefile size on windows --- conda-forge.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/conda-forge.yml b/conda-forge.yml index e46ef18d..7cb28e0b 100644 --- a/conda-forge.yml +++ b/conda-forge.yml @@ -2,6 +2,7 @@ azure: settings_win: variables: CONDA_BLD_PATH: C:\\bld\\ + SET_PAGEFILE: "True" build_platform: linux_aarch64: linux_64 linux_ppc64le: linux_64 From 8bab95c585a23b995c20ca749460442a9dff88f1 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Wed, 27 Jul 2022 01:29:30 +0200 Subject: [PATCH 4/5] unskip some tests --- recipe/meta.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 4a2f3122..5f33b4ce 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -88,10 +88,6 @@ requirements: - pooch {% set tests_to_skip = "_not_a_real_test" %} -# skip a test that fails with MKL + AVX512 (non-AVX512 passes), scipy/scipy#15533 -{% set tests_to_skip = tests_to_skip + " or test_x0_equals_Mb[bicgstab]" %} -# scipy/scipy#16927 -{% set tests_to_skip = tests_to_skip + " or test_failure_to_run_iterations" %} # [linux] # on the slowest agents, these tests take more than 20min in emulation {% set tests_to_skip = tests_to_skip + " or (test_lsq_linear and test_large_rank_deficient)" %} # [aarch64 or ppc64le] {% set tests_to_skip = tests_to_skip + " or (test_iterative and test_precond_inverse[case1])" %} # [aarch64 or ppc64le] From aeff5854e2fe3fe8b51b5d3f7a0de17adc9bc7d4 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Sun, 23 Apr 2023 17:21:05 +1100 Subject: [PATCH 5/5] MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.21.18.24.51 --- .azure-pipelines/azure-pipelines-linux.yml | 241 ++++- .azure-pipelines/azure-pipelines-osx.yml | 137 ++- .azure-pipelines/azure-pipelines-win.yml | 116 ++- ...on3.10.____cpythonpython_implcpython.yaml} | 12 +- ...python3.8.____73_pypypython_implpypy.yaml} | 12 +- ...hon3.8.____cpythonpython_implcpython.yaml} | 12 +- ...python3.9.____73_pypypython_implpypy.yaml} | 12 +- ...hon3.9.____cpythonpython_implcpython.yaml} | 12 +- ...on3.11.____cpythonpython_implcpython.yaml} | 12 +- ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.8.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.8.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.8.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.8.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.8.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.8.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.8.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.8.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.8.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.8.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...on3.10.____cpythonpython_implcpython.yaml} | 12 +- ...python3.8.____73_pypypython_implpypy.yaml} | 12 +- ...hon3.8.____cpythonpython_implcpython.yaml} | 12 +- ...python3.9.____73_pypypython_implpypy.yaml} | 12 +- ...hon3.9.____cpythonpython_implcpython.yaml} | 12 +- ...on3.11.____cpythonpython_implcpython.yaml} | 12 +- ...hon3.10.____cpythonpython_implcpython.yaml | 55 ++ ...1python3.8.____73_pypypython_implpypy.yaml | 55 ++ ...thon3.8.____cpythonpython_implcpython.yaml | 55 ++ ...1python3.9.____73_pypypython_implpypy.yaml | 55 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 55 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 55 ++ ...on3.10.____cpythonpython_implcpython.yaml} | 12 +- ...python3.8.____73_pypypython_implpypy.yaml} | 12 +- ...hon3.8.____cpythonpython_implcpython.yaml} | 12 +- ...python3.9.____73_pypypython_implpypy.yaml} | 12 +- ...hon3.9.____cpythonpython_implcpython.yaml} | 12 +- ...on3.11.____cpythonpython_implcpython.yaml} | 12 +- ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.8.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.8.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.8.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.8.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.8.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.8.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...on3.10.____cpythonpython_implcpython.yaml} | 12 +- ...python3.8.____73_pypypython_implpypy.yaml} | 12 +- ...hon3.8.____cpythonpython_implcpython.yaml} | 12 +- ...python3.9.____73_pypypython_implpypy.yaml} | 12 +- ...hon3.9.____cpythonpython_implcpython.yaml} | 12 +- ...on3.11.____cpythonpython_implcpython.yaml} | 12 +- ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.8.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.8.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.8.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.8.____cpythonpython_implcpython.yaml | 51 ++ ...1python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...leratenumpy1.21python3.10.____cpython.yaml | 51 ++ ...eleratenumpy1.21python3.8.____cpython.yaml | 51 ++ ...eleratenumpy1.21python3.9.____cpython.yaml | 51 ++ ...leratenumpy1.23python3.11.____cpython.yaml | 51 ++ ...etlibnumpy1.21python3.10.____cpython.yaml} | 12 +- ...netlibnumpy1.21python3.8.____cpython.yaml} | 12 +- ...netlibnumpy1.21python3.9.____cpython.yaml} | 12 +- ...etlibnumpy1.23python3.11.____cpython.yaml} | 12 +- ...enblasnumpy1.21python3.10.____cpython.yaml | 51 ++ ...penblasnumpy1.21python3.8.____cpython.yaml | 51 ++ ...penblasnumpy1.21python3.9.____cpython.yaml | 51 ++ ...enblasnumpy1.23python3.11.____cpython.yaml | 51 ++ ...on3.10.____cpythonpython_implcpython.yaml} | 6 + ...python3.8.____73_pypypython_implpypy.yaml} | 6 + ...hon3.8.____cpythonpython_implcpython.yaml} | 6 + ...python3.9.____73_pypypython_implpypy.yaml} | 6 + ...hon3.9.____cpythonpython_implcpython.yaml} | 6 + ...on3.11.____cpythonpython_implcpython.yaml} | 6 + ...hon3.10.____cpythonpython_implcpython.yaml | 38 + ...1python3.8.____73_pypypython_implpypy.yaml | 38 + ...thon3.8.____cpythonpython_implcpython.yaml | 38 + ...1python3.9.____73_pypypython_implpypy.yaml | 38 + ...thon3.9.____cpythonpython_implcpython.yaml | 38 + ...hon3.11.____cpythonpython_implcpython.yaml | 38 + ...hon3.10.____cpythonpython_implcpython.yaml | 38 + ...1python3.8.____73_pypypython_implpypy.yaml | 38 + ...thon3.8.____cpythonpython_implcpython.yaml | 38 + ...1python3.9.____73_pypypython_implpypy.yaml | 38 + ...thon3.9.____cpythonpython_implcpython.yaml | 38 + ...hon3.11.____cpythonpython_implcpython.yaml | 38 + ...hon3.10.____cpythonpython_implcpython.yaml | 38 + ...1python3.8.____73_pypypython_implpypy.yaml | 38 + ...thon3.8.____cpythonpython_implcpython.yaml | 38 + ...1python3.9.____73_pypypython_implpypy.yaml | 38 + ...thon3.9.____cpythonpython_implcpython.yaml | 38 + ...hon3.11.____cpythonpython_implcpython.yaml | 38 + ...hon3.10.____cpythonpython_implcpython.yaml | 38 + ...1python3.8.____73_pypypython_implpypy.yaml | 38 + ...thon3.8.____cpythonpython_implcpython.yaml | 38 + ...1python3.9.____73_pypypython_implpypy.yaml | 38 + ...thon3.9.____cpythonpython_implcpython.yaml | 38 + ...hon3.11.____cpythonpython_implcpython.yaml | 38 + ...hon3.10.____cpythonpython_implcpython.yaml | 38 + ...1python3.8.____73_pypypython_implpypy.yaml | 38 + ...thon3.8.____cpythonpython_implcpython.yaml | 38 + ...1python3.9.____73_pypypython_implpypy.yaml | 38 + ...thon3.9.____cpythonpython_implcpython.yaml | 38 + ...hon3.11.____cpythonpython_implcpython.yaml | 38 + README.md | 864 ++++++++++++++++-- 142 files changed, 6448 insertions(+), 220 deletions(-) rename .ci_support/{linux_64_numpy1.21python3.10.____cpythonpython_implcpython.yaml => linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython.yaml} (86%) rename .ci_support/{linux_64_numpy1.21python3.8.____73_pypypython_implpypy.yaml => linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy.yaml} (86%) rename .ci_support/{linux_64_numpy1.21python3.8.____cpythonpython_implcpython.yaml => linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython.yaml} (86%) rename .ci_support/{linux_64_numpy1.21python3.9.____73_pypypython_implpypy.yaml => linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy.yaml} (86%) rename .ci_support/{linux_64_numpy1.21python3.9.____cpythonpython_implcpython.yaml => linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython.yaml} (86%) rename .ci_support/{linux_64_numpy1.23python3.11.____cpythonpython_implcpython.yaml => linux_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml} (86%) create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml rename .ci_support/{linux_aarch64_numpy1.21python3.10.____cpythonpython_implcpython.yaml => linux_aarch64_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython.yaml} (87%) rename .ci_support/{linux_aarch64_numpy1.21python3.8.____73_pypypython_implpypy.yaml => linux_aarch64_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy.yaml} (87%) rename .ci_support/{linux_aarch64_numpy1.21python3.8.____cpythonpython_implcpython.yaml => linux_aarch64_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython.yaml} (87%) rename .ci_support/{linux_aarch64_numpy1.21python3.9.____73_pypypython_implpypy.yaml => linux_aarch64_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy.yaml} (87%) rename .ci_support/{linux_aarch64_numpy1.21python3.9.____cpythonpython_implcpython.yaml => linux_aarch64_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython.yaml} (87%) rename .ci_support/{linux_aarch64_numpy1.23python3.11.____cpythonpython_implcpython.yaml => linux_aarch64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython.yaml} (87%) create mode 100644 .ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_aarch64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython.yaml rename .ci_support/{linux_ppc64le_numpy1.21python3.10.____cpythonpython_implcpython.yaml => linux_ppc64le_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython.yaml} (86%) rename .ci_support/{linux_ppc64le_numpy1.21python3.8.____73_pypypython_implpypy.yaml => linux_ppc64le_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy.yaml} (86%) rename .ci_support/{linux_ppc64le_numpy1.21python3.8.____cpythonpython_implcpython.yaml => linux_ppc64le_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython.yaml} (86%) rename .ci_support/{linux_ppc64le_numpy1.21python3.9.____73_pypypython_implpypy.yaml => linux_ppc64le_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy.yaml} (86%) rename .ci_support/{linux_ppc64le_numpy1.21python3.9.____cpythonpython_implcpython.yaml => linux_ppc64le_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython.yaml} (86%) rename .ci_support/{linux_ppc64le_numpy1.23python3.11.____cpythonpython_implcpython.yaml => linux_ppc64le_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython.yaml} (86%) create mode 100644 .ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_ppc64le_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implacceleratenumpy1.21python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implacceleratenumpy1.21python3.8.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/osx_64_blas_implacceleratenumpy1.21python3.8.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implacceleratenumpy1.21python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/osx_64_blas_implacceleratenumpy1.21python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implacceleratenumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implblisnumpy1.21python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implblisnumpy1.21python3.8.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/osx_64_blas_implblisnumpy1.21python3.8.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implblisnumpy1.21python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/osx_64_blas_implblisnumpy1.21python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implblisnumpy1.23python3.11.____cpythonpython_implcpython.yaml rename .ci_support/{osx_64_numpy1.21python3.10.____cpythonpython_implcpython.yaml => osx_64_blas_implmklnumpy1.21python3.10.____cpythonpython_implcpython.yaml} (87%) rename .ci_support/{osx_64_numpy1.21python3.8.____73_pypypython_implpypy.yaml => osx_64_blas_implmklnumpy1.21python3.8.____73_pypypython_implpypy.yaml} (87%) rename .ci_support/{osx_64_numpy1.21python3.8.____cpythonpython_implcpython.yaml => osx_64_blas_implmklnumpy1.21python3.8.____cpythonpython_implcpython.yaml} (87%) rename .ci_support/{osx_64_numpy1.21python3.9.____73_pypypython_implpypy.yaml => osx_64_blas_implmklnumpy1.21python3.9.____73_pypypython_implpypy.yaml} (87%) rename .ci_support/{osx_64_numpy1.21python3.9.____cpythonpython_implcpython.yaml => osx_64_blas_implmklnumpy1.21python3.9.____cpythonpython_implcpython.yaml} (87%) rename .ci_support/{osx_64_numpy1.23python3.11.____cpythonpython_implcpython.yaml => osx_64_blas_implmklnumpy1.23python3.11.____cpythonpython_implcpython.yaml} (87%) create mode 100644 .ci_support/osx_64_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/osx_64_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/osx_64_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/osx_64_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/osx_64_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_arm64_blas_implacceleratenumpy1.21python3.10.____cpython.yaml create mode 100644 .ci_support/osx_arm64_blas_implacceleratenumpy1.21python3.8.____cpython.yaml create mode 100644 .ci_support/osx_arm64_blas_implacceleratenumpy1.21python3.9.____cpython.yaml create mode 100644 .ci_support/osx_arm64_blas_implacceleratenumpy1.23python3.11.____cpython.yaml rename .ci_support/{osx_arm64_numpy1.21python3.10.____cpython.yaml => osx_arm64_blas_implnetlibnumpy1.21python3.10.____cpython.yaml} (86%) rename .ci_support/{osx_arm64_numpy1.21python3.8.____cpython.yaml => osx_arm64_blas_implnetlibnumpy1.21python3.8.____cpython.yaml} (86%) rename .ci_support/{osx_arm64_numpy1.21python3.9.____cpython.yaml => osx_arm64_blas_implnetlibnumpy1.21python3.9.____cpython.yaml} (86%) rename .ci_support/{osx_arm64_numpy1.23python3.11.____cpython.yaml => osx_arm64_blas_implnetlibnumpy1.23python3.11.____cpython.yaml} (86%) create mode 100644 .ci_support/osx_arm64_blas_implopenblasnumpy1.21python3.10.____cpython.yaml create mode 100644 .ci_support/osx_arm64_blas_implopenblasnumpy1.21python3.8.____cpython.yaml create mode 100644 .ci_support/osx_arm64_blas_implopenblasnumpy1.21python3.9.____cpython.yaml create mode 100644 .ci_support/osx_arm64_blas_implopenblasnumpy1.23python3.11.____cpython.yaml rename .ci_support/{win_64_numpy1.21python3.10.____cpythonpython_implcpython.yaml => win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython.yaml} (85%) rename .ci_support/{win_64_numpy1.21python3.8.____73_pypypython_implpypy.yaml => win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy.yaml} (85%) rename .ci_support/{win_64_numpy1.21python3.8.____cpythonpython_implcpython.yaml => win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython.yaml} (85%) rename .ci_support/{win_64_numpy1.21python3.9.____73_pypypython_implpypy.yaml => win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy.yaml} (85%) rename .ci_support/{win_64_numpy1.21python3.9.____cpythonpython_implcpython.yaml => win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython.yaml} (85%) rename .ci_support/{win_64_numpy1.23python3.11.____cpythonpython_implcpython.yaml => win_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml} (85%) create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index cefa3077..f1aeac8e 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -8,78 +8,247 @@ jobs: vmImage: ubuntu-latest strategy: matrix: - linux_64_numpy1.21python3.10.____cpythonpython_implcpython: - CONFIG: linux_64_numpy1.21python3.10.____cpythonpython_implcpython + linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_numpy1.21python3.8.____73_pypypython_implpypy: - CONFIG: linux_64_numpy1.21python3.8.____73_pypypython_implpypy + linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_numpy1.21python3.8.____cpythonpython_implcpython: - CONFIG: linux_64_numpy1.21python3.8.____cpythonpython_implcpython + linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_numpy1.21python3.9.____73_pypypython_implpypy: - CONFIG: linux_64_numpy1.21python3.9.____73_pypypython_implpypy + linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_numpy1.21python3.9.____cpythonpython_implcpython: - CONFIG: linux_64_numpy1.21python3.9.____cpythonpython_implcpython + linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_numpy1.23python3.11.____cpythonpython_implcpython: - CONFIG: linux_64_numpy1.23python3.11.____cpythonpython_implcpython + linux_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_numpy1.21python3.10.____cpythonpython_implcpython: - CONFIG: linux_aarch64_numpy1.21python3.10.____cpythonpython_implcpython + linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_numpy1.21python3.8.____73_pypypython_implpypy: - CONFIG: linux_aarch64_numpy1.21python3.8.____73_pypypython_implpypy + linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_numpy1.21python3.8.____cpythonpython_implcpython: - CONFIG: linux_aarch64_numpy1.21python3.8.____cpythonpython_implcpython + linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_numpy1.21python3.9.____73_pypypython_implpypy: - CONFIG: linux_aarch64_numpy1.21python3.9.____73_pypypython_implpypy + linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_numpy1.21python3.9.____cpythonpython_implcpython: - CONFIG: linux_aarch64_numpy1.21python3.9.____cpythonpython_implcpython + linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_numpy1.23python3.11.____cpythonpython_implcpython: - CONFIG: linux_aarch64_numpy1.23python3.11.____cpythonpython_implcpython + linux_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_numpy1.21python3.10.____cpythonpython_implcpython: - CONFIG: linux_ppc64le_numpy1.21python3.10.____cpythonpython_implcpython + linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_numpy1.21python3.8.____73_pypypython_implpypy: - CONFIG: linux_ppc64le_numpy1.21python3.8.____73_pypypython_implpypy + linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_numpy1.21python3.8.____cpythonpython_implcpython: - CONFIG: linux_ppc64le_numpy1.21python3.8.____cpythonpython_implcpython + linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_numpy1.21python3.9.____73_pypypython_implpypy: - CONFIG: linux_ppc64le_numpy1.21python3.9.____73_pypypython_implpypy + linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_numpy1.21python3.9.____cpythonpython_implcpython: - CONFIG: linux_ppc64le_numpy1.21python3.9.____cpythonpython_implcpython + linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_numpy1.23python3.11.____cpythonpython_implcpython: - CONFIG: linux_ppc64le_numpy1.23python3.11.____cpythonpython_implcpython + linux_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: linux_aarch64_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: linux_aarch64_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: linux_aarch64_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: linux_aarch64_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: linux_aarch64_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: linux_aarch64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: linux_aarch64_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: linux_aarch64_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: linux_aarch64_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: linux_aarch64_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: linux_aarch64_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: linux_aarch64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: linux_ppc64le_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: linux_ppc64le_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: linux_ppc64le_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: linux_ppc64le_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: linux_ppc64le_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: linux_ppc64le_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: linux_ppc64le_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: linux_ppc64le_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: linux_ppc64le_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: linux_ppc64le_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: linux_ppc64le_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: linux_ppc64le_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + maxParallel: 22 timeoutInMinutes: 360 steps: diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml index 7a36c3a1..bb471d87 100755 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -8,36 +8,133 @@ jobs: vmImage: macOS-11 strategy: matrix: - osx_64_numpy1.21python3.10.____cpythonpython_implcpython: - CONFIG: osx_64_numpy1.21python3.10.____cpythonpython_implcpython + osx_64_blas_implacceleratenumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implacceleratenumpy1.21python3.10.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' - osx_64_numpy1.21python3.8.____73_pypypython_implpypy: - CONFIG: osx_64_numpy1.21python3.8.____73_pypypython_implpypy + osx_64_blas_implacceleratenumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: osx_64_blas_implacceleratenumpy1.21python3.8.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' - osx_64_numpy1.21python3.8.____cpythonpython_implcpython: - CONFIG: osx_64_numpy1.21python3.8.____cpythonpython_implcpython + osx_64_blas_implacceleratenumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implacceleratenumpy1.21python3.8.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' - osx_64_numpy1.21python3.9.____73_pypypython_implpypy: - CONFIG: osx_64_numpy1.21python3.9.____73_pypypython_implpypy + osx_64_blas_implacceleratenumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: osx_64_blas_implacceleratenumpy1.21python3.9.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' - osx_64_numpy1.21python3.9.____cpythonpython_implcpython: - CONFIG: osx_64_numpy1.21python3.9.____cpythonpython_implcpython + osx_64_blas_implacceleratenumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implacceleratenumpy1.21python3.9.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' - osx_64_numpy1.23python3.11.____cpythonpython_implcpython: - CONFIG: osx_64_numpy1.23python3.11.____cpythonpython_implcpython + osx_64_blas_implacceleratenumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implacceleratenumpy1.23python3.11.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.21python3.10.____cpython: - CONFIG: osx_arm64_numpy1.21python3.10.____cpython + osx_64_blas_implblisnumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implblisnumpy1.21python3.10.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.21python3.8.____cpython: - CONFIG: osx_arm64_numpy1.21python3.8.____cpython + osx_64_blas_implblisnumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: osx_64_blas_implblisnumpy1.21python3.8.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.21python3.9.____cpython: - CONFIG: osx_arm64_numpy1.21python3.9.____cpython + osx_64_blas_implblisnumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implblisnumpy1.21python3.8.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.23python3.11.____cpython: - CONFIG: osx_arm64_numpy1.23python3.11.____cpython + osx_64_blas_implblisnumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: osx_64_blas_implblisnumpy1.21python3.9.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' + osx_64_blas_implblisnumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implblisnumpy1.21python3.9.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implblisnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implblisnumpy1.23python3.11.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implmklnumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implmklnumpy1.21python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implmklnumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: osx_64_blas_implmklnumpy1.21python3.8.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + osx_64_blas_implmklnumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implmklnumpy1.21python3.8.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implmklnumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: osx_64_blas_implmklnumpy1.21python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + osx_64_blas_implmklnumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implmklnumpy1.21python3.9.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implmklnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implmklnumpy1.23python3.11.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: osx_64_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + osx_64_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: osx_64_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + osx_64_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: osx_64_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + osx_64_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: osx_64_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + osx_64_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implacceleratenumpy1.21python3.10.____cpython: + CONFIG: osx_arm64_blas_implacceleratenumpy1.21python3.10.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implacceleratenumpy1.21python3.8.____cpython: + CONFIG: osx_arm64_blas_implacceleratenumpy1.21python3.8.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implacceleratenumpy1.21python3.9.____cpython: + CONFIG: osx_arm64_blas_implacceleratenumpy1.21python3.9.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implacceleratenumpy1.23python3.11.____cpython: + CONFIG: osx_arm64_blas_implacceleratenumpy1.23python3.11.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implnetlibnumpy1.21python3.10.____cpython: + CONFIG: osx_arm64_blas_implnetlibnumpy1.21python3.10.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implnetlibnumpy1.21python3.8.____cpython: + CONFIG: osx_arm64_blas_implnetlibnumpy1.21python3.8.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implnetlibnumpy1.21python3.9.____cpython: + CONFIG: osx_arm64_blas_implnetlibnumpy1.21python3.9.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implnetlibnumpy1.23python3.11.____cpython: + CONFIG: osx_arm64_blas_implnetlibnumpy1.23python3.11.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implopenblasnumpy1.21python3.10.____cpython: + CONFIG: osx_arm64_blas_implopenblasnumpy1.21python3.10.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implopenblasnumpy1.21python3.8.____cpython: + CONFIG: osx_arm64_blas_implopenblasnumpy1.21python3.8.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implopenblasnumpy1.21python3.9.____cpython: + CONFIG: osx_arm64_blas_implopenblasnumpy1.21python3.9.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implopenblasnumpy1.23python3.11.____cpython: + CONFIG: osx_arm64_blas_implopenblasnumpy1.23python3.11.____cpython + UPLOAD_PACKAGES: 'True' + maxParallel: 15 timeoutInMinutes: 360 steps: diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index eb11ce08..f9c61195 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -8,27 +8,119 @@ jobs: vmImage: windows-2022 strategy: matrix: - win_64_numpy1.21python3.10.____cpythonpython_implcpython: - CONFIG: win_64_numpy1.21python3.10.____cpythonpython_implcpython + win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' - win_64_numpy1.21python3.8.____73_pypypython_implpypy: - CONFIG: win_64_numpy1.21python3.8.____73_pypypython_implpypy + win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' - win_64_numpy1.21python3.8.____cpythonpython_implcpython: - CONFIG: win_64_numpy1.21python3.8.____cpythonpython_implcpython + win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' - win_64_numpy1.21python3.9.____73_pypypython_implpypy: - CONFIG: win_64_numpy1.21python3.9.____73_pypypython_implpypy + win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' - win_64_numpy1.21python3.9.____cpythonpython_implcpython: - CONFIG: win_64_numpy1.21python3.9.____cpythonpython_implcpython + win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' - win_64_numpy1.23python3.11.____cpythonpython_implcpython: - CONFIG: win_64_numpy1.23python3.11.____cpythonpython_implcpython + win_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: win_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: win_64_blas_implmklenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: win_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: win_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: win_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: win_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: win_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: win_64_blas_implmklenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: win_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: win_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: win_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: win_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: win_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: win_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: win_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython: + CONFIG: win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy: + CONFIG: win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython: + CONFIG: win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy: + CONFIG: win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython: + CONFIG: win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: win_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + maxParallel: 13 timeoutInMinutes: 360 variables: CONDA_BLD_PATH: C:\\bld\\ + SET_PAGEFILE: 'True' UPLOAD_TEMP: D:\\tmp steps: diff --git a/.ci_support/linux_64_numpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython.yaml similarity index 86% rename from .ci_support/linux_64_numpy1.21python3.10.____cpythonpython_implcpython.yaml rename to .ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython.yaml index a2269adc..829eb8b3 100644 --- a/.ci_support/linux_64_numpy1.21python3.10.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -1,7 +1,9 @@ +blas_impl: +- blis c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_name: - cos6 channel_sources: @@ -11,13 +13,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - linux-64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_64_numpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy.yaml similarity index 86% rename from .ci_support/linux_64_numpy1.21python3.8.____73_pypypython_implpypy.yaml rename to .ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy.yaml index 842242ff..2d62f46e 100644 --- a/.ci_support/linux_64_numpy1.21python3.8.____73_pypypython_implpypy.yaml +++ b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -1,7 +1,9 @@ +blas_impl: +- blis c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_name: - cos6 channel_sources: @@ -11,13 +13,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - linux-64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_64_numpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython.yaml similarity index 86% rename from .ci_support/linux_64_numpy1.21python3.8.____cpythonpython_implcpython.yaml rename to .ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython.yaml index a8deb100..c3497aef 100644 --- a/.ci_support/linux_64_numpy1.21python3.8.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -1,7 +1,9 @@ +blas_impl: +- blis c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_name: - cos6 channel_sources: @@ -11,13 +13,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - linux-64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_64_numpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy.yaml similarity index 86% rename from .ci_support/linux_64_numpy1.21python3.9.____73_pypypython_implpypy.yaml rename to .ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy.yaml index 9630c17f..28349fec 100644 --- a/.ci_support/linux_64_numpy1.21python3.9.____73_pypypython_implpypy.yaml +++ b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -1,7 +1,9 @@ +blas_impl: +- blis c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_name: - cos6 channel_sources: @@ -11,13 +13,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - linux-64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_64_numpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython.yaml similarity index 86% rename from .ci_support/linux_64_numpy1.21python3.9.____cpythonpython_implcpython.yaml rename to .ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython.yaml index 82e8298a..6d945a0e 100644 --- a/.ci_support/linux_64_numpy1.21python3.9.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -1,7 +1,9 @@ +blas_impl: +- blis c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_name: - cos6 channel_sources: @@ -11,13 +13,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - linux-64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_64_numpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml similarity index 86% rename from .ci_support/linux_64_numpy1.23python3.11.____cpythonpython_implcpython.yaml rename to .ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml index 7cf5aa8d..68fe25d6 100644 --- a/.ci_support/linux_64_numpy1.23python3.11.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -1,7 +1,9 @@ +blas_impl: +- blis c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_name: - cos6 channel_sources: @@ -11,13 +13,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - linux-64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..f14971f5 --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- mkl +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- absent +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..84d984a9 --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +blas_impl: +- mkl +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- absent +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +python_impl: +- pypy +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..6f73444e --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- mkl +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- absent +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..4b65b154 --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +blas_impl: +- mkl +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- absent +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +python_impl: +- pypy +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..d1eb81c9 --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- mkl +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- absent +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..a37a2ecd --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- mkl +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- absent +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..b410231e --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- mkl +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- present +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..3bfff396 --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +blas_impl: +- mkl +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- present +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +python_impl: +- pypy +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..1cbf2a57 --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- mkl +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- present +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..f7421d34 --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +blas_impl: +- mkl +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- present +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +python_impl: +- pypy +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..53bf2149 --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- mkl +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- present +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..e79cb2f8 --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- mkl +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- present +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..c3c9ae4c --- /dev/null +++ b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- netlib +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..5c5c041e --- /dev/null +++ b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +blas_impl: +- netlib +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +python_impl: +- pypy +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..c0c4eaf4 --- /dev/null +++ b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- netlib +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..b0f1c74a --- /dev/null +++ b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +blas_impl: +- netlib +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +python_impl: +- pypy +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..d959d6c6 --- /dev/null +++ b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- netlib +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..d34dc310 --- /dev/null +++ b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- netlib +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..cb4b776e --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- absent +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..1dc20b0c --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- absent +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +python_impl: +- pypy +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..baefade6 --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- absent +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..3ce7770b --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- absent +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +python_impl: +- pypy +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..f56a05c6 --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- absent +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..56788cbd --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- absent +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..8522d72b --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- present +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..e46c22e8 --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- present +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +python_impl: +- pypy +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..4090beb9 --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- present +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..43ead480 --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- present +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +python_impl: +- pypy +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..e622e7bc --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- present +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..4d1c7816 --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos6 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- present +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +python_impl: +- cpython +target_platform: +- linux-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_aarch64_numpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython.yaml similarity index 87% rename from .ci_support/linux_aarch64_numpy1.21python3.10.____cpythonpython_implcpython.yaml rename to .ci_support/linux_aarch64_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython.yaml index 9eb25a0a..12864bce 100644 --- a/.ci_support/linux_aarch64_numpy1.21python3.10.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -1,9 +1,11 @@ BUILD: - aarch64-conda_cos7-linux-gnu +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_arch: - aarch64 cdt_name: @@ -15,13 +17,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -41,6 +45,8 @@ python_impl: target_platform: - linux-aarch64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_aarch64_numpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy.yaml similarity index 87% rename from .ci_support/linux_aarch64_numpy1.21python3.8.____73_pypypython_implpypy.yaml rename to .ci_support/linux_aarch64_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy.yaml index 43e116be..565e5fd4 100644 --- a/.ci_support/linux_aarch64_numpy1.21python3.8.____73_pypypython_implpypy.yaml +++ b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -1,9 +1,11 @@ BUILD: - aarch64-conda_cos7-linux-gnu +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_arch: - aarch64 cdt_name: @@ -15,13 +17,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -41,6 +45,8 @@ python_impl: target_platform: - linux-aarch64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_aarch64_numpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython.yaml similarity index 87% rename from .ci_support/linux_aarch64_numpy1.21python3.8.____cpythonpython_implcpython.yaml rename to .ci_support/linux_aarch64_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython.yaml index 828e527b..37e47c59 100644 --- a/.ci_support/linux_aarch64_numpy1.21python3.8.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -1,9 +1,11 @@ BUILD: - aarch64-conda_cos7-linux-gnu +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_arch: - aarch64 cdt_name: @@ -15,13 +17,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -41,6 +45,8 @@ python_impl: target_platform: - linux-aarch64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_aarch64_numpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy.yaml similarity index 87% rename from .ci_support/linux_aarch64_numpy1.21python3.9.____73_pypypython_implpypy.yaml rename to .ci_support/linux_aarch64_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy.yaml index ac644d15..b646ddd2 100644 --- a/.ci_support/linux_aarch64_numpy1.21python3.9.____73_pypypython_implpypy.yaml +++ b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -1,9 +1,11 @@ BUILD: - aarch64-conda_cos7-linux-gnu +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_arch: - aarch64 cdt_name: @@ -15,13 +17,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -41,6 +45,8 @@ python_impl: target_platform: - linux-aarch64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_aarch64_numpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython.yaml similarity index 87% rename from .ci_support/linux_aarch64_numpy1.21python3.9.____cpythonpython_implcpython.yaml rename to .ci_support/linux_aarch64_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython.yaml index 45544769..5cbfab12 100644 --- a/.ci_support/linux_aarch64_numpy1.21python3.9.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -1,9 +1,11 @@ BUILD: - aarch64-conda_cos7-linux-gnu +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_arch: - aarch64 cdt_name: @@ -15,13 +17,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -41,6 +45,8 @@ python_impl: target_platform: - linux-aarch64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_aarch64_numpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython.yaml similarity index 87% rename from .ci_support/linux_aarch64_numpy1.23python3.11.____cpythonpython_implcpython.yaml rename to .ci_support/linux_aarch64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython.yaml index ecae79c8..d6c39ac4 100644 --- a/.ci_support/linux_aarch64_numpy1.23python3.11.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -1,9 +1,11 @@ BUILD: - aarch64-conda_cos7-linux-gnu +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_arch: - aarch64 cdt_name: @@ -15,13 +17,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -41,6 +45,8 @@ python_impl: target_platform: - linux-aarch64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..f621faa7 --- /dev/null +++ b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,55 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- linux-aarch64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..cd0798a8 --- /dev/null +++ b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -0,0 +1,55 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +python_impl: +- pypy +target_platform: +- linux-aarch64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..069eb587 --- /dev/null +++ b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -0,0 +1,55 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- linux-aarch64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..fbd06a7e --- /dev/null +++ b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,55 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +python_impl: +- pypy +target_platform: +- linux-aarch64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..7e982f40 --- /dev/null +++ b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,55 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- linux-aarch64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_aarch64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..d52baf59 --- /dev/null +++ b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,55 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +python_impl: +- cpython +target_platform: +- linux-aarch64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_ppc64le_numpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython.yaml similarity index 86% rename from .ci_support/linux_ppc64le_numpy1.21python3.10.____cpythonpython_implcpython.yaml rename to .ci_support/linux_ppc64le_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython.yaml index 52779904..1d10316a 100644 --- a/.ci_support/linux_ppc64le_numpy1.21python3.10.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -1,7 +1,9 @@ +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_name: - cos7 channel_sources: @@ -11,13 +13,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - linux-ppc64le zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_ppc64le_numpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy.yaml similarity index 86% rename from .ci_support/linux_ppc64le_numpy1.21python3.8.____73_pypypython_implpypy.yaml rename to .ci_support/linux_ppc64le_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy.yaml index 1b98706c..deee21d3 100644 --- a/.ci_support/linux_ppc64le_numpy1.21python3.8.____73_pypypython_implpypy.yaml +++ b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -1,7 +1,9 @@ +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_name: - cos7 channel_sources: @@ -11,13 +13,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - linux-ppc64le zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_ppc64le_numpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython.yaml similarity index 86% rename from .ci_support/linux_ppc64le_numpy1.21python3.8.____cpythonpython_implcpython.yaml rename to .ci_support/linux_ppc64le_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython.yaml index 9e7520e4..20a2e96c 100644 --- a/.ci_support/linux_ppc64le_numpy1.21python3.8.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -1,7 +1,9 @@ +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_name: - cos7 channel_sources: @@ -11,13 +13,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - linux-ppc64le zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_ppc64le_numpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy.yaml similarity index 86% rename from .ci_support/linux_ppc64le_numpy1.21python3.9.____73_pypypython_implpypy.yaml rename to .ci_support/linux_ppc64le_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy.yaml index baafaec7..06ca81e1 100644 --- a/.ci_support/linux_ppc64le_numpy1.21python3.9.____73_pypypython_implpypy.yaml +++ b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -1,7 +1,9 @@ +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_name: - cos7 channel_sources: @@ -11,13 +13,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - linux-ppc64le zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_ppc64le_numpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython.yaml similarity index 86% rename from .ci_support/linux_ppc64le_numpy1.21python3.9.____cpythonpython_implcpython.yaml rename to .ci_support/linux_ppc64le_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython.yaml index 61f33069..41ef03f3 100644 --- a/.ci_support/linux_ppc64le_numpy1.21python3.9.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -1,7 +1,9 @@ +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_name: - cos7 channel_sources: @@ -11,13 +13,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - linux-ppc64le zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_ppc64le_numpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython.yaml similarity index 86% rename from .ci_support/linux_ppc64le_numpy1.23python3.11.____cpythonpython_implcpython.yaml rename to .ci_support/linux_ppc64le_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython.yaml index 2fe384c1..e7f9ab8f 100644 --- a/.ci_support/linux_ppc64le_numpy1.23python3.11.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -1,7 +1,9 @@ +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: -- '11' +- '12' cdt_name: - cos7 channel_sources: @@ -11,13 +13,15 @@ channel_targets: cxx_compiler: - gxx cxx_compiler_version: -- '11' +- '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - linux-ppc64le zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..85bb9ac7 --- /dev/null +++ b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- linux-ppc64le +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..6e925bc8 --- /dev/null +++ b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +python_impl: +- pypy +target_platform: +- linux-ppc64le +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..597d67d2 --- /dev/null +++ b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- linux-ppc64le +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..cb7a5795 --- /dev/null +++ b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +python_impl: +- pypy +target_platform: +- linux-ppc64le +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..2a28ee3f --- /dev/null +++ b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- linux-ppc64le +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..987ef5cb --- /dev/null +++ b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +blas_impl: +- openblas +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +python_impl: +- cpython +target_platform: +- linux-ppc64le +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implacceleratenumpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implacceleratenumpy1.21python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..a6b29f91 --- /dev/null +++ b/.ci_support/osx_64_blas_implacceleratenumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implacceleratenumpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/osx_64_blas_implacceleratenumpy1.21python3.8.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..a76d8e70 --- /dev/null +++ b/.ci_support/osx_64_blas_implacceleratenumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +python_impl: +- pypy +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implacceleratenumpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implacceleratenumpy1.21python3.8.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..128052fc --- /dev/null +++ b/.ci_support/osx_64_blas_implacceleratenumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implacceleratenumpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/osx_64_blas_implacceleratenumpy1.21python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..76e0c994 --- /dev/null +++ b/.ci_support/osx_64_blas_implacceleratenumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +python_impl: +- pypy +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implacceleratenumpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implacceleratenumpy1.21python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..bd7a3e9a --- /dev/null +++ b/.ci_support/osx_64_blas_implacceleratenumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implacceleratenumpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implacceleratenumpy1.23python3.11.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..d61abaa4 --- /dev/null +++ b/.ci_support/osx_64_blas_implacceleratenumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +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 +python_impl: +- cpython +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implblisnumpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implblisnumpy1.21python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..d77e0bb0 --- /dev/null +++ b/.ci_support/osx_64_blas_implblisnumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- blis +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implblisnumpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/osx_64_blas_implblisnumpy1.21python3.8.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..ca4ec6de --- /dev/null +++ b/.ci_support/osx_64_blas_implblisnumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- blis +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +python_impl: +- pypy +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implblisnumpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implblisnumpy1.21python3.8.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..cfc91ce6 --- /dev/null +++ b/.ci_support/osx_64_blas_implblisnumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- blis +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implblisnumpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/osx_64_blas_implblisnumpy1.21python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..e7398995 --- /dev/null +++ b/.ci_support/osx_64_blas_implblisnumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- blis +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +python_impl: +- pypy +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implblisnumpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implblisnumpy1.21python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..3af538b4 --- /dev/null +++ b/.ci_support/osx_64_blas_implblisnumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- blis +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implblisnumpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implblisnumpy1.23python3.11.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..f6e1f07c --- /dev/null +++ b/.ci_support/osx_64_blas_implblisnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- blis +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +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 +python_impl: +- cpython +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_numpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implmklnumpy1.21python3.10.____cpythonpython_implcpython.yaml similarity index 87% rename from .ci_support/osx_64_numpy1.21python3.10.____cpythonpython_implcpython.yaml rename to .ci_support/osx_64_blas_implmklnumpy1.21python3.10.____cpythonpython_implcpython.yaml index 5e9a7854..bbe1fce1 100644 --- a/.ci_support/osx_64_numpy1.21python3.10.____cpythonpython_implcpython.yaml +++ b/.ci_support/osx_64_blas_implmklnumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -1,9 +1,11 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +blas_impl: +- mkl c_compiler: - clang c_compiler_version: -- '14' +- '15' channel_sources: - conda-forge channel_targets: @@ -11,11 +13,13 @@ channel_targets: cxx_compiler: - clangxx cxx_compiler_version: -- '14' +- '15' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - osx-64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/osx_64_numpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/osx_64_blas_implmklnumpy1.21python3.8.____73_pypypython_implpypy.yaml similarity index 87% rename from .ci_support/osx_64_numpy1.21python3.8.____73_pypypython_implpypy.yaml rename to .ci_support/osx_64_blas_implmklnumpy1.21python3.8.____73_pypypython_implpypy.yaml index dda1e8bd..9a0462b0 100644 --- a/.ci_support/osx_64_numpy1.21python3.8.____73_pypypython_implpypy.yaml +++ b/.ci_support/osx_64_blas_implmklnumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -1,9 +1,11 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +blas_impl: +- mkl c_compiler: - clang c_compiler_version: -- '14' +- '15' channel_sources: - conda-forge channel_targets: @@ -11,11 +13,13 @@ channel_targets: cxx_compiler: - clangxx cxx_compiler_version: -- '14' +- '15' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - osx-64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/osx_64_numpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implmklnumpy1.21python3.8.____cpythonpython_implcpython.yaml similarity index 87% rename from .ci_support/osx_64_numpy1.21python3.8.____cpythonpython_implcpython.yaml rename to .ci_support/osx_64_blas_implmklnumpy1.21python3.8.____cpythonpython_implcpython.yaml index 549f1f9b..98f13e9d 100644 --- a/.ci_support/osx_64_numpy1.21python3.8.____cpythonpython_implcpython.yaml +++ b/.ci_support/osx_64_blas_implmklnumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -1,9 +1,11 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +blas_impl: +- mkl c_compiler: - clang c_compiler_version: -- '14' +- '15' channel_sources: - conda-forge channel_targets: @@ -11,11 +13,13 @@ channel_targets: cxx_compiler: - clangxx cxx_compiler_version: -- '14' +- '15' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - osx-64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/osx_64_numpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/osx_64_blas_implmklnumpy1.21python3.9.____73_pypypython_implpypy.yaml similarity index 87% rename from .ci_support/osx_64_numpy1.21python3.9.____73_pypypython_implpypy.yaml rename to .ci_support/osx_64_blas_implmklnumpy1.21python3.9.____73_pypypython_implpypy.yaml index 04482378..e9050145 100644 --- a/.ci_support/osx_64_numpy1.21python3.9.____73_pypypython_implpypy.yaml +++ b/.ci_support/osx_64_blas_implmklnumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -1,9 +1,11 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +blas_impl: +- mkl c_compiler: - clang c_compiler_version: -- '14' +- '15' channel_sources: - conda-forge channel_targets: @@ -11,11 +13,13 @@ channel_targets: cxx_compiler: - clangxx cxx_compiler_version: -- '14' +- '15' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - osx-64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/osx_64_numpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implmklnumpy1.21python3.9.____cpythonpython_implcpython.yaml similarity index 87% rename from .ci_support/osx_64_numpy1.21python3.9.____cpythonpython_implcpython.yaml rename to .ci_support/osx_64_blas_implmklnumpy1.21python3.9.____cpythonpython_implcpython.yaml index 78a825a4..abd9983b 100644 --- a/.ci_support/osx_64_numpy1.21python3.9.____cpythonpython_implcpython.yaml +++ b/.ci_support/osx_64_blas_implmklnumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -1,9 +1,11 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +blas_impl: +- mkl c_compiler: - clang c_compiler_version: -- '14' +- '15' channel_sources: - conda-forge channel_targets: @@ -11,11 +13,13 @@ channel_targets: cxx_compiler: - clangxx cxx_compiler_version: -- '14' +- '15' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - osx-64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/osx_64_numpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implmklnumpy1.23python3.11.____cpythonpython_implcpython.yaml similarity index 87% rename from .ci_support/osx_64_numpy1.23python3.11.____cpythonpython_implcpython.yaml rename to .ci_support/osx_64_blas_implmklnumpy1.23python3.11.____cpythonpython_implcpython.yaml index bbb2568f..b3010fcb 100644 --- a/.ci_support/osx_64_numpy1.23python3.11.____cpythonpython_implcpython.yaml +++ b/.ci_support/osx_64_blas_implmklnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -1,9 +1,11 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +blas_impl: +- mkl c_compiler: - clang c_compiler_version: -- '14' +- '15' channel_sources: - conda-forge channel_targets: @@ -11,11 +13,13 @@ channel_targets: cxx_compiler: - clangxx cxx_compiler_version: -- '14' +- '15' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - osx-64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/osx_64_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..4b08567d --- /dev/null +++ b/.ci_support/osx_64_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- netlib +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/osx_64_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..3777d525 --- /dev/null +++ b/.ci_support/osx_64_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- netlib +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +python_impl: +- pypy +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..ecf2fc54 --- /dev/null +++ b/.ci_support/osx_64_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- netlib +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/osx_64_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..1dfff865 --- /dev/null +++ b/.ci_support/osx_64_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- netlib +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +python_impl: +- pypy +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..dd374021 --- /dev/null +++ b/.ci_support/osx_64_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- netlib +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..43010163 --- /dev/null +++ b/.ci_support/osx_64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- netlib +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +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 +python_impl: +- cpython +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..adf3fcef --- /dev/null +++ b/.ci_support/osx_64_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/osx_64_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..9fd25e42 --- /dev/null +++ b/.ci_support/osx_64_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +python_impl: +- pypy +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..9049b42f --- /dev/null +++ b/.ci_support/osx_64_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/osx_64_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..bc21ff27 --- /dev/null +++ b/.ci_support/osx_64_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +python_impl: +- pypy +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..41235231 --- /dev/null +++ b/.ci_support/osx_64_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..5b39f0df --- /dev/null +++ b/.ci_support/osx_64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +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 +python_impl: +- cpython +target_platform: +- osx-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_arm64_blas_implacceleratenumpy1.21python3.10.____cpython.yaml b/.ci_support/osx_arm64_blas_implacceleratenumpy1.21python3.10.____cpython.yaml new file mode 100644 index 00000000..d864622c --- /dev/null +++ b/.ci_support/osx_arm64_blas_implacceleratenumpy1.21python3.10.____cpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- osx-arm64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_arm64_blas_implacceleratenumpy1.21python3.8.____cpython.yaml b/.ci_support/osx_arm64_blas_implacceleratenumpy1.21python3.8.____cpython.yaml new file mode 100644 index 00000000..f7856d33 --- /dev/null +++ b/.ci_support/osx_arm64_blas_implacceleratenumpy1.21python3.8.____cpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- osx-arm64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_arm64_blas_implacceleratenumpy1.21python3.9.____cpython.yaml b/.ci_support/osx_arm64_blas_implacceleratenumpy1.21python3.9.____cpython.yaml new file mode 100644 index 00000000..b1c74ce4 --- /dev/null +++ b/.ci_support/osx_arm64_blas_implacceleratenumpy1.21python3.9.____cpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- osx-arm64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_arm64_blas_implacceleratenumpy1.23python3.11.____cpython.yaml b/.ci_support/osx_arm64_blas_implacceleratenumpy1.23python3.11.____cpython.yaml new file mode 100644 index 00000000..0edd3aad --- /dev/null +++ b/.ci_support/osx_arm64_blas_implacceleratenumpy1.23python3.11.____cpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +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 +python_impl: +- cpython +target_platform: +- osx-arm64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_arm64_numpy1.21python3.10.____cpython.yaml b/.ci_support/osx_arm64_blas_implnetlibnumpy1.21python3.10.____cpython.yaml similarity index 86% rename from .ci_support/osx_arm64_numpy1.21python3.10.____cpython.yaml rename to .ci_support/osx_arm64_blas_implnetlibnumpy1.21python3.10.____cpython.yaml index 872a7b7c..9cf415ea 100644 --- a/.ci_support/osx_arm64_numpy1.21python3.10.____cpython.yaml +++ b/.ci_support/osx_arm64_blas_implnetlibnumpy1.21python3.10.____cpython.yaml @@ -1,9 +1,11 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +blas_impl: +- netlib c_compiler: - clang c_compiler_version: -- '14' +- '15' channel_sources: - conda-forge channel_targets: @@ -11,11 +13,13 @@ channel_targets: cxx_compiler: - clangxx cxx_compiler_version: -- '14' +- '15' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - osx-arm64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/osx_arm64_numpy1.21python3.8.____cpython.yaml b/.ci_support/osx_arm64_blas_implnetlibnumpy1.21python3.8.____cpython.yaml similarity index 86% rename from .ci_support/osx_arm64_numpy1.21python3.8.____cpython.yaml rename to .ci_support/osx_arm64_blas_implnetlibnumpy1.21python3.8.____cpython.yaml index 54d089f8..fd281456 100644 --- a/.ci_support/osx_arm64_numpy1.21python3.8.____cpython.yaml +++ b/.ci_support/osx_arm64_blas_implnetlibnumpy1.21python3.8.____cpython.yaml @@ -1,9 +1,11 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +blas_impl: +- netlib c_compiler: - clang c_compiler_version: -- '14' +- '15' channel_sources: - conda-forge channel_targets: @@ -11,11 +13,13 @@ channel_targets: cxx_compiler: - clangxx cxx_compiler_version: -- '14' +- '15' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - osx-arm64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/osx_arm64_numpy1.21python3.9.____cpython.yaml b/.ci_support/osx_arm64_blas_implnetlibnumpy1.21python3.9.____cpython.yaml similarity index 86% rename from .ci_support/osx_arm64_numpy1.21python3.9.____cpython.yaml rename to .ci_support/osx_arm64_blas_implnetlibnumpy1.21python3.9.____cpython.yaml index e4955e4e..7fe22667 100644 --- a/.ci_support/osx_arm64_numpy1.21python3.9.____cpython.yaml +++ b/.ci_support/osx_arm64_blas_implnetlibnumpy1.21python3.9.____cpython.yaml @@ -1,9 +1,11 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +blas_impl: +- netlib c_compiler: - clang c_compiler_version: -- '14' +- '15' channel_sources: - conda-forge channel_targets: @@ -11,11 +13,13 @@ channel_targets: cxx_compiler: - clangxx cxx_compiler_version: -- '14' +- '15' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - osx-arm64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/osx_arm64_numpy1.23python3.11.____cpython.yaml b/.ci_support/osx_arm64_blas_implnetlibnumpy1.23python3.11.____cpython.yaml similarity index 86% rename from .ci_support/osx_arm64_numpy1.23python3.11.____cpython.yaml rename to .ci_support/osx_arm64_blas_implnetlibnumpy1.23python3.11.____cpython.yaml index 8b7e35c7..ff76b87a 100644 --- a/.ci_support/osx_arm64_numpy1.23python3.11.____cpython.yaml +++ b/.ci_support/osx_arm64_blas_implnetlibnumpy1.23python3.11.____cpython.yaml @@ -1,9 +1,11 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +blas_impl: +- netlib c_compiler: - clang c_compiler_version: -- '14' +- '15' channel_sources: - conda-forge channel_targets: @@ -11,11 +13,13 @@ channel_targets: cxx_compiler: - clangxx cxx_compiler_version: -- '14' +- '15' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: -- '11' +- '12' libblas: - 3.9 *netlib libcblas: @@ -37,6 +41,8 @@ python_impl: target_platform: - osx-arm64 zip_keys: +- - blas_impl + - enforce_avx512 - - c_compiler_version - cxx_compiler_version - fortran_compiler_version diff --git a/.ci_support/osx_arm64_blas_implopenblasnumpy1.21python3.10.____cpython.yaml b/.ci_support/osx_arm64_blas_implopenblasnumpy1.21python3.10.____cpython.yaml new file mode 100644 index 00000000..a77e0700 --- /dev/null +++ b/.ci_support/osx_arm64_blas_implopenblasnumpy1.21python3.10.____cpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- osx-arm64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_arm64_blas_implopenblasnumpy1.21python3.8.____cpython.yaml b/.ci_support/osx_arm64_blas_implopenblasnumpy1.21python3.8.____cpython.yaml new file mode 100644 index 00000000..4f19031b --- /dev/null +++ b/.ci_support/osx_arm64_blas_implopenblasnumpy1.21python3.8.____cpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- osx-arm64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_arm64_blas_implopenblasnumpy1.21python3.9.____cpython.yaml b/.ci_support/osx_arm64_blas_implopenblasnumpy1.21python3.9.____cpython.yaml new file mode 100644 index 00000000..324eddbb --- /dev/null +++ b/.ci_support/osx_arm64_blas_implopenblasnumpy1.21python3.9.____cpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- osx-arm64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/osx_arm64_blas_implopenblasnumpy1.23python3.11.____cpython.yaml b/.ci_support/osx_arm64_blas_implopenblasnumpy1.23python3.11.____cpython.yaml new file mode 100644 index 00000000..5cf98103 --- /dev/null +++ b/.ci_support/osx_arm64_blas_implopenblasnumpy1.23python3.11.____cpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +enforce_avx512: +- None +fortran_compiler: +- gfortran +fortran_compiler_version: +- '12' +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +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 +python_impl: +- cpython +target_platform: +- osx-arm64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - c_compiler_version + - cxx_compiler_version + - fortran_compiler_version +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_numpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython.yaml similarity index 85% rename from .ci_support/win_64_numpy1.21python3.10.____cpythonpython_implcpython.yaml rename to .ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython.yaml index ec52d017..e950390b 100644 --- a/.ci_support/win_64_numpy1.21python3.10.____cpythonpython_implcpython.yaml +++ b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -1,3 +1,5 @@ +blas_impl: +- blis c_compiler: - vs2019 channel_sources: @@ -6,6 +8,8 @@ channel_targets: - conda-forge main cxx_compiler: - vs2019 +enforce_avx512: +- None libblas: - 3.9 *netlib libcblas: @@ -27,6 +31,8 @@ python_impl: target_platform: - win-64 zip_keys: +- - blas_impl + - enforce_avx512 - - python - numpy - python_impl diff --git a/.ci_support/win_64_numpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy.yaml similarity index 85% rename from .ci_support/win_64_numpy1.21python3.8.____73_pypypython_implpypy.yaml rename to .ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy.yaml index 22b0fb1b..0c77fc53 100644 --- a/.ci_support/win_64_numpy1.21python3.8.____73_pypypython_implpypy.yaml +++ b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -1,3 +1,5 @@ +blas_impl: +- blis c_compiler: - vs2019 channel_sources: @@ -6,6 +8,8 @@ channel_targets: - conda-forge main cxx_compiler: - vs2019 +enforce_avx512: +- None libblas: - 3.9 *netlib libcblas: @@ -27,6 +31,8 @@ python_impl: target_platform: - win-64 zip_keys: +- - blas_impl + - enforce_avx512 - - python - numpy - python_impl diff --git a/.ci_support/win_64_numpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython.yaml similarity index 85% rename from .ci_support/win_64_numpy1.21python3.8.____cpythonpython_implcpython.yaml rename to .ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython.yaml index 7105f57e..e9df5132 100644 --- a/.ci_support/win_64_numpy1.21python3.8.____cpythonpython_implcpython.yaml +++ b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -1,3 +1,5 @@ +blas_impl: +- blis c_compiler: - vs2019 channel_sources: @@ -6,6 +8,8 @@ channel_targets: - conda-forge main cxx_compiler: - vs2019 +enforce_avx512: +- None libblas: - 3.9 *netlib libcblas: @@ -27,6 +31,8 @@ python_impl: target_platform: - win-64 zip_keys: +- - blas_impl + - enforce_avx512 - - python - numpy - python_impl diff --git a/.ci_support/win_64_numpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy.yaml similarity index 85% rename from .ci_support/win_64_numpy1.21python3.9.____73_pypypython_implpypy.yaml rename to .ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy.yaml index dbfddfc0..cbe36825 100644 --- a/.ci_support/win_64_numpy1.21python3.9.____73_pypypython_implpypy.yaml +++ b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -1,3 +1,5 @@ +blas_impl: +- blis c_compiler: - vs2019 channel_sources: @@ -6,6 +8,8 @@ channel_targets: - conda-forge main cxx_compiler: - vs2019 +enforce_avx512: +- None libblas: - 3.9 *netlib libcblas: @@ -27,6 +31,8 @@ python_impl: target_platform: - win-64 zip_keys: +- - blas_impl + - enforce_avx512 - - python - numpy - python_impl diff --git a/.ci_support/win_64_numpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython.yaml similarity index 85% rename from .ci_support/win_64_numpy1.21python3.9.____cpythonpython_implcpython.yaml rename to .ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython.yaml index e5e8783a..47c84b96 100644 --- a/.ci_support/win_64_numpy1.21python3.9.____cpythonpython_implcpython.yaml +++ b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -1,3 +1,5 @@ +blas_impl: +- blis c_compiler: - vs2019 channel_sources: @@ -6,6 +8,8 @@ channel_targets: - conda-forge main cxx_compiler: - vs2019 +enforce_avx512: +- None libblas: - 3.9 *netlib libcblas: @@ -27,6 +31,8 @@ python_impl: target_platform: - win-64 zip_keys: +- - blas_impl + - enforce_avx512 - - python - numpy - python_impl diff --git a/.ci_support/win_64_numpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml similarity index 85% rename from .ci_support/win_64_numpy1.23python3.11.____cpythonpython_implcpython.yaml rename to .ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml index ac87038d..ee6d60d6 100644 --- a/.ci_support/win_64_numpy1.23python3.11.____cpythonpython_implcpython.yaml +++ b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -1,3 +1,5 @@ +blas_impl: +- blis c_compiler: - vs2019 channel_sources: @@ -6,6 +8,8 @@ channel_targets: - conda-forge main cxx_compiler: - vs2019 +enforce_avx512: +- None libblas: - 3.9 *netlib libcblas: @@ -27,6 +31,8 @@ python_impl: target_platform: - win-64 zip_keys: +- - blas_impl + - enforce_avx512 - - python - numpy - python_impl diff --git a/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..23487ff2 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- absent +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..c45aed39 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -0,0 +1,38 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- absent +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +python_impl: +- pypy +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..b2630652 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- absent +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..e518f7a7 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,38 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- absent +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +python_impl: +- pypy +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..85a90e47 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- absent +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..2638143c --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- absent +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..3b0aa013 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- present +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..48edc9bb --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -0,0 +1,38 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- present +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +python_impl: +- pypy +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..e02e74e7 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- present +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..5845ad18 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,38 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- present +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +python_impl: +- pypy +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..91cb0c56 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- present +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..87d2ad15 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- present +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..74f421f0 --- /dev/null +++ b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- netlib +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- None +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..c06528be --- /dev/null +++ b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -0,0 +1,38 @@ +blas_impl: +- netlib +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- None +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +python_impl: +- pypy +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..6f82089c --- /dev/null +++ b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- netlib +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- None +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..ab2d0a9c --- /dev/null +++ b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,38 @@ +blas_impl: +- netlib +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- None +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +python_impl: +- pypy +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..3134d43d --- /dev/null +++ b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- netlib +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- None +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..a1c8ce0e --- /dev/null +++ b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- netlib +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- None +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..0e6d411f --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- absent +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..3f26d7f9 --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -0,0 +1,38 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- absent +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +python_impl: +- pypy +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..4ff3c2d1 --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- absent +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..00d5648d --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,38 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- absent +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +python_impl: +- pypy +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..d41f7ced --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- absent +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..043605ab --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- absent +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..0309c266 --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- present +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..c1e9668b --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy.yaml @@ -0,0 +1,38 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- present +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +python_impl: +- pypy +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..f74513b6 --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- present +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..dfa35f84 --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,38 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- present +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +python_impl: +- pypy +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..fe567c22 --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- present +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..cc2dfbeb --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,38 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +enforce_avx512: +- present +libblas: +- 3.9 *netlib +libcblas: +- 3.9 *netlib +liblapack: +- 3.9 *netlib +m2w64_fortran_compiler: +- m2w64-toolchain +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/README.md b/README.md index b043f9d2..ea722b78 100644 --- a/README.md +++ b/README.md @@ -35,241 +35,969 @@ Current build status - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
VariantStatus
linux_64_numpy1.21python3.10.____cpythonpython_implcpythonlinux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython - variant + variant
linux_64_numpy1.21python3.8.____73_pypypython_implpypylinux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy - variant + variant
linux_64_numpy1.21python3.8.____cpythonpython_implcpythonlinux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython - variant + variant
linux_64_numpy1.21python3.9.____73_pypypython_implpypylinux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy - variant + variant
linux_64_numpy1.21python3.9.____cpythonpython_implcpythonlinux_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython - variant + variant
linux_64_numpy1.23python3.11.____cpythonpython_implcpythonlinux_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython - variant + variant
linux_aarch64_numpy1.21python3.10.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython - variant + variant
linux_aarch64_numpy1.21python3.8.____73_pypypython_implpypylinux_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy - variant + variant
linux_aarch64_numpy1.21python3.8.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython - variant + variant
linux_aarch64_numpy1.21python3.9.____73_pypypython_implpypylinux_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy - variant + variant
linux_aarch64_numpy1.21python3.9.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython - variant + variant
linux_aarch64_numpy1.23python3.11.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython - variant + variant
linux_ppc64le_numpy1.21python3.10.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython - variant + variant
linux_ppc64le_numpy1.21python3.8.____73_pypypython_implpypylinux_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy - variant + variant
linux_ppc64le_numpy1.21python3.8.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython - variant + variant
linux_ppc64le_numpy1.21python3.9.____73_pypypython_implpypylinux_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy - variant + variant
linux_ppc64le_numpy1.21python3.9.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython - variant + variant
linux_ppc64le_numpy1.23python3.11.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython - variant + variant
osx_64_numpy1.21python3.10.____cpythonpython_implcpythonlinux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython - variant + variant
osx_64_numpy1.21python3.8.____73_pypypython_implpypylinux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy - variant + variant
osx_64_numpy1.21python3.8.____cpythonpython_implcpythonlinux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython - variant + variant
osx_64_numpy1.21python3.9.____73_pypypython_implpypylinux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy - variant + variant
osx_64_numpy1.21python3.9.____cpythonpython_implcpythonlinux_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython - variant + variant
osx_64_numpy1.23python3.11.____cpythonpython_implcpythonlinux_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython - variant + variant
osx_arm64_numpy1.21python3.10.____cpythonlinux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython - variant + variant
osx_arm64_numpy1.21python3.8.____cpythonlinux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy - variant + variant
osx_arm64_numpy1.21python3.9.____cpythonlinux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython - variant + variant
osx_arm64_numpy1.23python3.11.____cpythonlinux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy - variant + variant
win_64_numpy1.21python3.10.____cpythonpython_implcpythonlinux_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython - variant + variant
win_64_numpy1.21python3.8.____73_pypypython_implpypylinux_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython - variant + variant
win_64_numpy1.21python3.8.____cpythonpython_implcpythonlinux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython - variant + variant
win_64_numpy1.21python3.9.____73_pypypython_implpypylinux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy - variant + variant
win_64_numpy1.21python3.9.____cpythonpython_implcpythonlinux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython - variant + variant
win_64_numpy1.23python3.11.____cpythonpython_implcpythonlinux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy - variant + variant + +
linux_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython + + variant + +
linux_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
linux_aarch64_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython + + variant + +
linux_aarch64_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy + + variant + +
linux_aarch64_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython + + variant + +
linux_aarch64_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy + + variant + +
linux_aarch64_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython + + variant + +
linux_aarch64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
linux_aarch64_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython + + variant + +
linux_aarch64_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy + + variant + +
linux_aarch64_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython + + variant + +
linux_aarch64_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy + + variant + +
linux_aarch64_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython + + variant + +
linux_aarch64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
linux_ppc64le_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython + + variant + +
linux_ppc64le_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy + + variant + +
linux_ppc64le_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython + + variant + +
linux_ppc64le_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy + + variant + +
linux_ppc64le_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython + + variant + +
linux_ppc64le_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
linux_ppc64le_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython + + variant + +
linux_ppc64le_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy + + variant + +
linux_ppc64le_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython + + variant + +
linux_ppc64le_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy + + variant + +
linux_ppc64le_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython + + variant + +
linux_ppc64le_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
osx_64_blas_implacceleratenumpy1.21python3.10.____cpythonpython_implcpython + + variant + +
osx_64_blas_implacceleratenumpy1.21python3.8.____73_pypypython_implpypy + + variant + +
osx_64_blas_implacceleratenumpy1.21python3.8.____cpythonpython_implcpython + + variant + +
osx_64_blas_implacceleratenumpy1.21python3.9.____73_pypypython_implpypy + + variant + +
osx_64_blas_implacceleratenumpy1.21python3.9.____cpythonpython_implcpython + + variant + +
osx_64_blas_implacceleratenumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
osx_64_blas_implblisnumpy1.21python3.10.____cpythonpython_implcpython + + variant + +
osx_64_blas_implblisnumpy1.21python3.8.____73_pypypython_implpypy + + variant + +
osx_64_blas_implblisnumpy1.21python3.8.____cpythonpython_implcpython + + variant + +
osx_64_blas_implblisnumpy1.21python3.9.____73_pypypython_implpypy + + variant + +
osx_64_blas_implblisnumpy1.21python3.9.____cpythonpython_implcpython + + variant + +
osx_64_blas_implblisnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
osx_64_blas_implmklnumpy1.21python3.10.____cpythonpython_implcpython + + variant + +
osx_64_blas_implmklnumpy1.21python3.8.____73_pypypython_implpypy + + variant + +
osx_64_blas_implmklnumpy1.21python3.8.____cpythonpython_implcpython + + variant + +
osx_64_blas_implmklnumpy1.21python3.9.____73_pypypython_implpypy + + variant + +
osx_64_blas_implmklnumpy1.21python3.9.____cpythonpython_implcpython + + variant + +
osx_64_blas_implmklnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
osx_64_blas_implnetlibnumpy1.21python3.10.____cpythonpython_implcpython + + variant + +
osx_64_blas_implnetlibnumpy1.21python3.8.____73_pypypython_implpypy + + variant + +
osx_64_blas_implnetlibnumpy1.21python3.8.____cpythonpython_implcpython + + variant + +
osx_64_blas_implnetlibnumpy1.21python3.9.____73_pypypython_implpypy + + variant + +
osx_64_blas_implnetlibnumpy1.21python3.9.____cpythonpython_implcpython + + variant + +
osx_64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
osx_64_blas_implopenblasnumpy1.21python3.10.____cpythonpython_implcpython + + variant + +
osx_64_blas_implopenblasnumpy1.21python3.8.____73_pypypython_implpypy + + variant + +
osx_64_blas_implopenblasnumpy1.21python3.8.____cpythonpython_implcpython + + variant + +
osx_64_blas_implopenblasnumpy1.21python3.9.____73_pypypython_implpypy + + variant + +
osx_64_blas_implopenblasnumpy1.21python3.9.____cpythonpython_implcpython + + variant + +
osx_64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
osx_arm64_blas_implacceleratenumpy1.21python3.10.____cpython + + variant + +
osx_arm64_blas_implacceleratenumpy1.21python3.8.____cpython + + variant + +
osx_arm64_blas_implacceleratenumpy1.21python3.9.____cpython + + variant + +
osx_arm64_blas_implacceleratenumpy1.23python3.11.____cpython + + variant + +
osx_arm64_blas_implnetlibnumpy1.21python3.10.____cpython + + variant + +
osx_arm64_blas_implnetlibnumpy1.21python3.8.____cpython + + variant + +
osx_arm64_blas_implnetlibnumpy1.21python3.9.____cpython + + variant + +
osx_arm64_blas_implnetlibnumpy1.23python3.11.____cpython + + variant + +
osx_arm64_blas_implopenblasnumpy1.21python3.10.____cpython + + variant + +
osx_arm64_blas_implopenblasnumpy1.21python3.8.____cpython + + variant + +
osx_arm64_blas_implopenblasnumpy1.21python3.9.____cpython + + variant + +
osx_arm64_blas_implopenblasnumpy1.23python3.11.____cpython + + variant + +
win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython + + variant + +
win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy + + variant + +
win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython + + variant + +
win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy + + variant + +
win_64_blas_implblisenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython + + variant + +
win_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
win_64_blas_implmklenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython + + variant + +
win_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy + + variant + +
win_64_blas_implmklenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython + + variant + +
win_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy + + variant + +
win_64_blas_implmklenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython + + variant + +
win_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
win_64_blas_implmklenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython + + variant + +
win_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy + + variant + +
win_64_blas_implmklenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython + + variant + +
win_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy + + variant + +
win_64_blas_implmklenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython + + variant + +
win_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.10.____cpythonpython_implcpython + + variant + +
win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____73_pypypython_implpypy + + variant + +
win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.8.____cpythonpython_implcpython + + variant + +
win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____73_pypypython_implpypy + + variant + +
win_64_blas_implnetlibenforce_avx512Nonenumpy1.21python3.9.____cpythonpython_implcpython + + variant + +
win_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.10.____cpythonpython_implcpython + + variant + +
win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____73_pypypython_implpypy + + variant + +
win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.8.____cpythonpython_implcpython + + variant + +
win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____73_pypypython_implpypy + + variant + +
win_64_blas_implopenblasenforce_avx512absentnumpy1.21python3.9.____cpythonpython_implcpython + + variant + +
win_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.10.____cpythonpython_implcpython + + variant + +
win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____73_pypypython_implpypy + + variant + +
win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.8.____cpythonpython_implcpython + + variant + +
win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____73_pypypython_implpypy + + variant + +
win_64_blas_implopenblasenforce_avx512presentnumpy1.21python3.9.____cpythonpython_implcpython + + variant + +
win_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython + + variant