From e1722540cb5e07ccb9f4c2005df7a17d7629dbb9 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Fri, 26 Jun 2020 18:09:17 +0200 Subject: [PATCH 1/5] test for all blas variants --- recipe/conda_build_config.yaml | 7 +++++++ recipe/meta.yaml | 5 +++++ 2 files changed, 12 insertions(+) diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml index 24d3c56b..32692ae6 100644 --- a/recipe/conda_build_config.yaml +++ b/recipe/conda_build_config.yaml @@ -1,2 +1,9 @@ channel_sources: # [win] - conda-forge/label/meson_dev,conda-forge # [win] + +blas_impl: + - accelerate # [osx] + - netlib + - openblas + - mkl # [x86_64] + - blis # [x86_64] diff --git a/recipe/meta.yaml b/recipe/meta.yaml index d434c6b8..ac36cbf3 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -7,6 +7,9 @@ package: # use 'python_impl' in meta.yaml so it gets picked up by rendering # [python_impl == "pypy"] +# need to do the same for blas_impl to ensure CI jobs get split +# [blas_impl == "mkl"] + source: # The sdist distributed by scipy contains pre-compiled pythran sources, # as well as the relevant submodules; by taking the tarball from github @@ -219,6 +222,8 @@ outputs: - mpmath # needed for scipy.datasets - pooch + # make sure we test with all blas implementations + - libblas =*=*{{ blas_impl }} commands: {% set tests_to_skip = "_not_a_real_test" %} # skip a test that fails with MKL + AVX512 (non-AVX512 passes), scipy/scipy#15533 From 924ca8bf783aef3aaa712e0c527d0ca5edd8dffe 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 | 3 +++ 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml index 32692ae6..07436b2a 100644 --- a/recipe/conda_build_config.yaml +++ b/recipe/conda_build_config.yaml @@ -4,6 +4,25 @@ channel_sources: # [win] 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 ac36cbf3..6a741c80 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -9,6 +9,7 @@ package: # need to do the same for blas_impl to ensure CI jobs get split # [blas_impl == "mkl"] +# [enforce_avx512 == "True"] source: # The sdist distributed by scipy contains pre-compiled pythran sources, @@ -269,6 +270,8 @@ outputs: {% endif %} # 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 76742ac0a6fcbd46731581eb8490b4ec9ad0e606 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 b9cda326f6a8825305239ba8e6946a2ea838bf9f 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 | 6 ------ 1 file changed, 6 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 6a741c80..c620e8b8 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -227,12 +227,6 @@ outputs: - libblas =*=*{{ blas_impl }} commands: {% 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] - # scipy/scipy#19337 - {% set tests_to_skip = tests_to_skip + " or (TestLevyStable and test_distribution_outside_)" %} # [aarch64 or ppc64le] # 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 30ea0ce2e53ba78f9b181431fb6ec5483a6a4b7e Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Tue, 9 Jan 2024 13:58:18 +1100 Subject: [PATCH 5/5] MNT: Re-rendered with conda-build 3.28.2, conda-smithy 3.30.2, and conda-forge-pinning 2024.01.08.19.20.26 --- .azure-pipelines/azure-pipelines-linux.yml | 185 ++++- .azure-pipelines/azure-pipelines-osx.yml | 121 ++- .azure-pipelines/azure-pipelines-win.yml | 97 ++- ...on3.10.____cpythonpython_implcpython.yaml} | 6 + ...python3.9.____73_pypypython_implpypy.yaml} | 6 + ...hon3.9.____cpythonpython_implcpython.yaml} | 6 + ...on3.11.____cpythonpython_implcpython.yaml} | 6 + ...on3.12.____cpythonpython_implcpython.yaml} | 6 + ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...2python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.12.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...2python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.12.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...2python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.12.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...2python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.12.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...2python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.12.____cpythonpython_implcpython.yaml | 51 ++ ...on3.10.____cpythonpython_implcpython.yaml} | 6 + ...hon3.9.____cpythonpython_implcpython.yaml} | 6 + ...on3.11.____cpythonpython_implcpython.yaml} | 6 + ...on3.12.____cpythonpython_implcpython.yaml} | 6 + ...hon3.10.____cpythonpython_implcpython.yaml | 55 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 55 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 55 ++ ...hon3.12.____cpythonpython_implcpython.yaml | 55 ++ ...on3.10.____cpythonpython_implcpython.yaml} | 6 + ...hon3.9.____cpythonpython_implcpython.yaml} | 6 + ...on3.11.____cpythonpython_implcpython.yaml} | 6 + ...on3.12.____cpythonpython_implcpython.yaml} | 6 + ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.12.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...2python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.12.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...2python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.12.____cpythonpython_implcpython.yaml | 51 ++ ...on3.10.____cpythonpython_implcpython.yaml} | 6 + ...python3.9.____73_pypypython_implpypy.yaml} | 6 + ...hon3.9.____cpythonpython_implcpython.yaml} | 6 + ...on3.11.____cpythonpython_implcpython.yaml} | 6 + ...on3.12.____cpythonpython_implcpython.yaml} | 6 + ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...2python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.12.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.10.____cpythonpython_implcpython.yaml | 51 ++ ...2python3.9.____73_pypypython_implpypy.yaml | 51 ++ ...thon3.9.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.11.____cpythonpython_implcpython.yaml | 51 ++ ...hon3.12.____cpythonpython_implcpython.yaml | 51 ++ ...leratenumpy1.22python3.10.____cpython.yaml | 51 ++ ...eleratenumpy1.22python3.9.____cpython.yaml | 51 ++ ...leratenumpy1.23python3.11.____cpython.yaml | 51 ++ ...leratenumpy1.26python3.12.____cpython.yaml | 51 ++ ...etlibnumpy1.22python3.10.____cpython.yaml} | 6 + ...netlibnumpy1.22python3.9.____cpython.yaml} | 6 + ...etlibnumpy1.23python3.11.____cpython.yaml} | 6 + ...etlibnumpy1.26python3.12.____cpython.yaml} | 6 + ...enblasnumpy1.22python3.10.____cpython.yaml | 51 ++ ...penblasnumpy1.22python3.9.____cpython.yaml | 51 ++ ...enblasnumpy1.23python3.11.____cpython.yaml | 51 ++ ...enblasnumpy1.26python3.12.____cpython.yaml | 51 ++ ...on3.10.____cpythonpython_implcpython.yaml} | 6 + ...python3.9.____73_pypypython_implpypy.yaml} | 6 + ...hon3.9.____cpythonpython_implcpython.yaml} | 6 + ...on3.11.____cpythonpython_implcpython.yaml} | 6 + ...on3.12.____cpythonpython_implcpython.yaml} | 6 + ...hon3.10.____cpythonpython_implcpython.yaml | 36 + ...2python3.9.____73_pypypython_implpypy.yaml | 36 + ...thon3.9.____cpythonpython_implcpython.yaml | 36 + ...hon3.11.____cpythonpython_implcpython.yaml | 36 + ...hon3.12.____cpythonpython_implcpython.yaml | 36 + ...hon3.10.____cpythonpython_implcpython.yaml | 36 + ...2python3.9.____73_pypypython_implpypy.yaml | 36 + ...thon3.9.____cpythonpython_implcpython.yaml | 36 + ...hon3.11.____cpythonpython_implcpython.yaml | 36 + ...hon3.12.____cpythonpython_implcpython.yaml | 36 + ...hon3.10.____cpythonpython_implcpython.yaml | 36 + ...2python3.9.____73_pypypython_implpypy.yaml | 36 + ...thon3.9.____cpythonpython_implcpython.yaml | 36 + ...hon3.11.____cpythonpython_implcpython.yaml | 36 + ...hon3.12.____cpythonpython_implcpython.yaml | 36 + ...hon3.10.____cpythonpython_implcpython.yaml | 36 + ...2python3.9.____73_pypypython_implpypy.yaml | 36 + ...thon3.9.____cpythonpython_implcpython.yaml | 36 + ...hon3.11.____cpythonpython_implcpython.yaml | 36 + ...hon3.12.____cpythonpython_implcpython.yaml | 36 + ...hon3.10.____cpythonpython_implcpython.yaml | 36 + ...2python3.9.____73_pypypython_implpypy.yaml | 36 + ...thon3.9.____cpythonpython_implcpython.yaml | 36 + ...hon3.11.____cpythonpython_implcpython.yaml | 36 + ...hon3.12.____cpythonpython_implcpython.yaml | 36 + .gitignore | 14 +- .scripts/build_steps.sh | 6 +- .scripts/run_osx_build.sh | 6 +- .scripts/run_win_build.bat | 8 +- README.md | 710 ++++++++++++++++-- 121 files changed, 5217 insertions(+), 119 deletions(-) rename .ci_support/{linux_64_numpy1.22python3.10.____cpythonpython_implcpython.yaml => linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython.yaml} (89%) rename .ci_support/{linux_64_numpy1.22python3.9.____73_pypypython_implpypy.yaml => linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy.yaml} (89%) rename .ci_support/{linux_64_numpy1.22python3.9.____cpythonpython_implcpython.yaml => linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython.yaml} (89%) rename .ci_support/{linux_64_numpy1.23python3.11.____cpythonpython_implcpython.yaml => linux_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml} (89%) rename .ci_support/{linux_64_numpy1.26python3.12.____cpythonpython_implcpython.yaml => linux_64_blas_implblisenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython.yaml} (89%) create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.22python3.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_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.22python3.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_implmklenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.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_implnetlibenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.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_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython.yaml rename .ci_support/{linux_aarch64_numpy1.22python3.10.____cpythonpython_implcpython.yaml => linux_aarch64_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython.yaml} (90%) rename .ci_support/{linux_aarch64_numpy1.22python3.9.____cpythonpython_implcpython.yaml => linux_aarch64_blas_implnetlibnumpy1.22python3.9.____cpythonpython_implcpython.yaml} (90%) rename .ci_support/{linux_aarch64_numpy1.23python3.11.____cpythonpython_implcpython.yaml => linux_aarch64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython.yaml} (90%) rename .ci_support/{linux_aarch64_numpy1.26python3.12.____cpythonpython_implcpython.yaml => linux_aarch64_blas_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython.yaml} (90%) create mode 100644 .ci_support/linux_aarch64_blas_implopenblasnumpy1.22python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_aarch64_blas_implopenblasnumpy1.22python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_aarch64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_aarch64_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython.yaml rename .ci_support/{linux_ppc64le_numpy1.22python3.10.____cpythonpython_implcpython.yaml => linux_ppc64le_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython.yaml} (89%) rename .ci_support/{linux_ppc64le_numpy1.22python3.9.____cpythonpython_implcpython.yaml => linux_ppc64le_blas_implnetlibnumpy1.22python3.9.____cpythonpython_implcpython.yaml} (89%) rename .ci_support/{linux_ppc64le_numpy1.23python3.11.____cpythonpython_implcpython.yaml => linux_ppc64le_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython.yaml} (89%) rename .ci_support/{linux_ppc64le_numpy1.26python3.12.____cpythonpython_implcpython.yaml => linux_ppc64le_blas_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython.yaml} (89%) create mode 100644 .ci_support/linux_ppc64le_blas_implopenblasnumpy1.22python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_ppc64le_blas_implopenblasnumpy1.22python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_ppc64le_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/linux_ppc64le_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implacceleratenumpy1.22python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implacceleratenumpy1.22python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/osx_64_blas_implacceleratenumpy1.22python3.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_implacceleratenumpy1.26python3.12.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implblisnumpy1.22python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implblisnumpy1.22python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/osx_64_blas_implblisnumpy1.22python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implblisnumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implblisnumpy1.26python3.12.____cpythonpython_implcpython.yaml rename .ci_support/{osx_64_numpy1.22python3.10.____cpythonpython_implcpython.yaml => osx_64_blas_implmklnumpy1.22python3.10.____cpythonpython_implcpython.yaml} (90%) rename .ci_support/{osx_64_numpy1.22python3.9.____73_pypypython_implpypy.yaml => osx_64_blas_implmklnumpy1.22python3.9.____73_pypypython_implpypy.yaml} (89%) rename .ci_support/{osx_64_numpy1.22python3.9.____cpythonpython_implcpython.yaml => osx_64_blas_implmklnumpy1.22python3.9.____cpythonpython_implcpython.yaml} (89%) rename .ci_support/{osx_64_numpy1.23python3.11.____cpythonpython_implcpython.yaml => osx_64_blas_implmklnumpy1.23python3.11.____cpythonpython_implcpython.yaml} (90%) rename .ci_support/{osx_64_numpy1.26python3.12.____cpythonpython_implcpython.yaml => osx_64_blas_implmklnumpy1.26python3.12.____cpythonpython_implcpython.yaml} (90%) create mode 100644 .ci_support/osx_64_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implnetlibnumpy1.22python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/osx_64_blas_implnetlibnumpy1.22python3.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_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implopenblasnumpy1.22python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implopenblasnumpy1.22python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/osx_64_blas_implopenblasnumpy1.22python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_64_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/osx_arm64_blas_implacceleratenumpy1.22python3.10.____cpython.yaml create mode 100644 .ci_support/osx_arm64_blas_implacceleratenumpy1.22python3.9.____cpython.yaml create mode 100644 .ci_support/osx_arm64_blas_implacceleratenumpy1.23python3.11.____cpython.yaml create mode 100644 .ci_support/osx_arm64_blas_implacceleratenumpy1.26python3.12.____cpython.yaml rename .ci_support/{osx_arm64_numpy1.22python3.10.____cpython.yaml => osx_arm64_blas_implnetlibnumpy1.22python3.10.____cpython.yaml} (89%) rename .ci_support/{osx_arm64_numpy1.22python3.9.____cpython.yaml => osx_arm64_blas_implnetlibnumpy1.22python3.9.____cpython.yaml} (89%) rename .ci_support/{osx_arm64_numpy1.23python3.11.____cpython.yaml => osx_arm64_blas_implnetlibnumpy1.23python3.11.____cpython.yaml} (89%) rename .ci_support/{osx_arm64_numpy1.26python3.12.____cpython.yaml => osx_arm64_blas_implnetlibnumpy1.26python3.12.____cpython.yaml} (89%) create mode 100644 .ci_support/osx_arm64_blas_implopenblasnumpy1.22python3.10.____cpython.yaml create mode 100644 .ci_support/osx_arm64_blas_implopenblasnumpy1.22python3.9.____cpython.yaml create mode 100644 .ci_support/osx_arm64_blas_implopenblasnumpy1.23python3.11.____cpython.yaml create mode 100644 .ci_support/osx_arm64_blas_implopenblasnumpy1.26python3.12.____cpython.yaml rename .ci_support/{win_64_numpy1.22python3.10.____cpythonpython_implcpython.yaml => win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython.yaml} (84%) rename .ci_support/{win_64_numpy1.22python3.9.____73_pypypython_implpypy.yaml => win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy.yaml} (84%) rename .ci_support/{win_64_numpy1.22python3.9.____cpythonpython_implcpython.yaml => win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython.yaml} (84%) rename .ci_support/{win_64_numpy1.23python3.11.____cpythonpython_implcpython.yaml => win_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml} (84%) rename .ci_support/{win_64_numpy1.26python3.12.____cpythonpython_implcpython.yaml => win_64_blas_implblisenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython.yaml} (84%) create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.22python3.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_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.22python3.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_implmklenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.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_implnetlibenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.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_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml create mode 100644 .ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython.yaml diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index c7afc8e3..c708cc9b 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -8,58 +8,191 @@ jobs: vmImage: ubuntu-latest strategy: matrix: - linux_64_numpy1.22python3.10.____cpythonpython_implcpython: - CONFIG: linux_64_numpy1.22python3.10.____cpythonpython_implcpython + linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_numpy1.22python3.9.____73_pypypython_implpypy: - CONFIG: linux_64_numpy1.22python3.9.____73_pypypython_implpypy + linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_numpy1.22python3.9.____cpythonpython_implcpython: - CONFIG: linux_64_numpy1.22python3.9.____cpythonpython_implcpython + linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.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_64_numpy1.26python3.12.____cpythonpython_implcpython: - CONFIG: linux_64_numpy1.26python3.12.____cpythonpython_implcpython + linux_64_blas_implblisenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implblisenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_numpy1.22python3.10.____cpythonpython_implcpython: - CONFIG: linux_aarch64_numpy1.22python3.10.____cpythonpython_implcpython + linux_64_blas_implmklenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implmklenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_numpy1.22python3.9.____cpythonpython_implcpython: - CONFIG: linux_aarch64_numpy1.22python3.9.____cpythonpython_implcpython + linux_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy 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.22python3.9.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_numpy1.26python3.12.____cpythonpython_implcpython: - CONFIG: linux_aarch64_numpy1.26python3.12.____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.22python3.10.____cpythonpython_implcpython: - CONFIG: linux_ppc64le_numpy1.22python3.10.____cpythonpython_implcpython + linux_64_blas_implmklenforce_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implmklenforce_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_numpy1.22python3.9.____cpythonpython_implcpython: - CONFIG: linux_ppc64le_numpy1.22python3.9.____cpythonpython_implcpython + linux_64_blas_implmklenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implmklenforce_avx512presentnumpy1.22python3.10.____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.22python3.9.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_numpy1.26python3.12.____cpythonpython_implcpython: - CONFIG: linux_ppc64le_numpy1.26python3.12.____cpythonpython_implcpython + linux_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + 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_implmklenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implmklenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.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_implnetlibenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implnetlibenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.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_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implopenblasenforce_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy: + CONFIG: linux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.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_64_blas_implopenblasenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: linux_64_blas_implopenblasenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: linux_aarch64_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_blas_implnetlibnumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: linux_aarch64_blas_implnetlibnumpy1.22python3.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_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: linux_aarch64_blas_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_blas_implopenblasnumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: linux_aarch64_blas_implopenblasnumpy1.22python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_blas_implopenblasnumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: linux_aarch64_blas_implopenblasnumpy1.22python3.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_aarch64_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: linux_aarch64_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: linux_ppc64le_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_blas_implnetlibnumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: linux_ppc64le_blas_implnetlibnumpy1.22python3.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_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: linux_ppc64le_blas_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_blas_implopenblasnumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: linux_ppc64le_blas_implopenblasnumpy1.22python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_blas_implopenblasnumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: linux_ppc64le_blas_implopenblasnumpy1.22python3.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 + linux_ppc64le_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: linux_ppc64le_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + maxParallel: 20 timeoutInMinutes: 360 steps: diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml index b7949df5..a2099a39 100755 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -8,33 +8,118 @@ jobs: vmImage: macOS-11 strategy: matrix: - osx_64_numpy1.22python3.10.____cpythonpython_implcpython: - CONFIG: osx_64_numpy1.22python3.10.____cpythonpython_implcpython + osx_64_blas_implacceleratenumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implacceleratenumpy1.22python3.10.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' - osx_64_numpy1.22python3.9.____73_pypypython_implpypy: - CONFIG: osx_64_numpy1.22python3.9.____73_pypypython_implpypy + osx_64_blas_implacceleratenumpy1.22python3.9.____73_pypypython_implpypy: + CONFIG: osx_64_blas_implacceleratenumpy1.22python3.9.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' - osx_64_numpy1.22python3.9.____cpythonpython_implcpython: - CONFIG: osx_64_numpy1.22python3.9.____cpythonpython_implcpython + osx_64_blas_implacceleratenumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implacceleratenumpy1.22python3.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_64_numpy1.26python3.12.____cpythonpython_implcpython: - CONFIG: osx_64_numpy1.26python3.12.____cpythonpython_implcpython + osx_64_blas_implacceleratenumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implacceleratenumpy1.26python3.12.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.22python3.10.____cpython: - CONFIG: osx_arm64_numpy1.22python3.10.____cpython + osx_64_blas_implblisnumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implblisnumpy1.22python3.10.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.22python3.9.____cpython: - CONFIG: osx_arm64_numpy1.22python3.9.____cpython + osx_64_blas_implblisnumpy1.22python3.9.____73_pypypython_implpypy: + CONFIG: osx_64_blas_implblisnumpy1.22python3.9.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.23python3.11.____cpython: - CONFIG: osx_arm64_numpy1.23python3.11.____cpython + osx_64_blas_implblisnumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implblisnumpy1.22python3.9.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' - osx_arm64_numpy1.26python3.12.____cpython: - CONFIG: osx_arm64_numpy1.26python3.12.____cpython + osx_64_blas_implblisnumpy1.23python3.11.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implblisnumpy1.23python3.11.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' + osx_64_blas_implblisnumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implblisnumpy1.26python3.12.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implmklnumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implmklnumpy1.22python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implmklnumpy1.22python3.9.____73_pypypython_implpypy: + CONFIG: osx_64_blas_implmklnumpy1.22python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + osx_64_blas_implmklnumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implmklnumpy1.22python3.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_implmklnumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implmklnumpy1.26python3.12.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implnetlibnumpy1.22python3.9.____73_pypypython_implpypy: + CONFIG: osx_64_blas_implnetlibnumpy1.22python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + osx_64_blas_implnetlibnumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implnetlibnumpy1.22python3.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_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implopenblasnumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implopenblasnumpy1.22python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_64_blas_implopenblasnumpy1.22python3.9.____73_pypypython_implpypy: + CONFIG: osx_64_blas_implopenblasnumpy1.22python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + osx_64_blas_implopenblasnumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implopenblasnumpy1.22python3.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_64_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: osx_64_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implacceleratenumpy1.22python3.10.____cpython: + CONFIG: osx_arm64_blas_implacceleratenumpy1.22python3.10.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implacceleratenumpy1.22python3.9.____cpython: + CONFIG: osx_arm64_blas_implacceleratenumpy1.22python3.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_implacceleratenumpy1.26python3.12.____cpython: + CONFIG: osx_arm64_blas_implacceleratenumpy1.26python3.12.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implnetlibnumpy1.22python3.10.____cpython: + CONFIG: osx_arm64_blas_implnetlibnumpy1.22python3.10.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implnetlibnumpy1.22python3.9.____cpython: + CONFIG: osx_arm64_blas_implnetlibnumpy1.22python3.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_implnetlibnumpy1.26python3.12.____cpython: + CONFIG: osx_arm64_blas_implnetlibnumpy1.26python3.12.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implopenblasnumpy1.22python3.10.____cpython: + CONFIG: osx_arm64_blas_implopenblasnumpy1.22python3.10.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implopenblasnumpy1.22python3.9.____cpython: + CONFIG: osx_arm64_blas_implopenblasnumpy1.22python3.9.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implopenblasnumpy1.23python3.11.____cpython: + CONFIG: osx_arm64_blas_implopenblasnumpy1.23python3.11.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_blas_implopenblasnumpy1.26python3.12.____cpython: + CONFIG: osx_arm64_blas_implopenblasnumpy1.26python3.12.____cpython + UPLOAD_PACKAGES: 'True' + maxParallel: 16 timeoutInMinutes: 360 steps: diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index a9306cd0..62458ea8 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -8,24 +8,101 @@ jobs: vmImage: windows-2022 strategy: matrix: - win_64_numpy1.22python3.10.____cpythonpython_implcpython: - CONFIG: win_64_numpy1.22python3.10.____cpythonpython_implcpython + win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' - win_64_numpy1.22python3.9.____73_pypypython_implpypy: - CONFIG: win_64_numpy1.22python3.9.____73_pypypython_implpypy + win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy: + CONFIG: win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy UPLOAD_PACKAGES: 'True' - win_64_numpy1.22python3.9.____cpythonpython_implcpython: - CONFIG: win_64_numpy1.22python3.9.____cpythonpython_implcpython + win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.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_numpy1.26python3.12.____cpythonpython_implcpython: - CONFIG: win_64_numpy1.26python3.12.____cpythonpython_implcpython + win_64_blas_implblisenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: win_64_blas_implblisenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: win_64_blas_implmklenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy: + CONFIG: win_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: win_64_blas_implmklenforce_avx512absentnumpy1.22python3.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_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: win_64_blas_implmklenforce_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: win_64_blas_implmklenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy: + CONFIG: win_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + win_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: win_64_blas_implmklenforce_avx512presentnumpy1.22python3.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_implmklenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: win_64_blas_implmklenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy: + CONFIG: win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.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_implnetlibenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: win_64_blas_implnetlibenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy: + CONFIG: win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.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_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: win_64_blas_implopenblasenforce_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython: + CONFIG: win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy: + CONFIG: win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy + UPLOAD_PACKAGES: 'True' + win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython: + CONFIG: win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.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' + win_64_blas_implopenblasenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython: + CONFIG: win_64_blas_implopenblasenforce_avx512presentnumpy1.26python3.12.____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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython.yaml similarity index 89% rename from .ci_support/linux_64_numpy1.22python3.10.____cpythonpython_implcpython.yaml rename to .ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython.yaml index fde8762e..f83900d4 100644 --- a/.ci_support/linux_64_numpy1.22python3.10.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython.yaml @@ -1,3 +1,5 @@ +blas_impl: +- blis c_compiler: - gcc c_compiler_version: @@ -14,6 +16,8 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy.yaml similarity index 89% rename from .ci_support/linux_64_numpy1.22python3.9.____73_pypypython_implpypy.yaml rename to .ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy.yaml index 25056690..6164f5ec 100644 --- a/.ci_support/linux_64_numpy1.22python3.9.____73_pypypython_implpypy.yaml +++ b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy.yaml @@ -1,3 +1,5 @@ +blas_impl: +- blis c_compiler: - gcc c_compiler_version: @@ -14,6 +16,8 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython.yaml similarity index 89% rename from .ci_support/linux_64_numpy1.22python3.9.____cpythonpython_implcpython.yaml rename to .ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython.yaml index e88fa4ea..8cb9dc18 100644 --- a/.ci_support/linux_64_numpy1.22python3.9.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython.yaml @@ -1,3 +1,5 @@ +blas_impl: +- blis c_compiler: - gcc c_compiler_version: @@ -14,6 +16,8 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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 89% 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 db909ac3..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,3 +1,5 @@ +blas_impl: +- blis c_compiler: - gcc c_compiler_version: @@ -14,6 +16,8 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython.yaml similarity index 89% rename from .ci_support/linux_64_numpy1.26python3.12.____cpythonpython_implcpython.yaml rename to .ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython.yaml index 83d1af30..39f80c9f 100644 --- a/.ci_support/linux_64_numpy1.26python3.12.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_64_blas_implblisenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython.yaml @@ -1,3 +1,5 @@ +blas_impl: +- blis c_compiler: - gcc c_compiler_version: @@ -14,6 +16,8 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..5b0c5ea7 --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.22python3.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.22' +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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..d5b9611d --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.22python3.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.22' +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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..1268815d --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.22python3.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.22' +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_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..5e00c013 --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512absentnumpy1.26python3.12.____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.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..7a387bcb --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.22python3.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.22' +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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..798c7607 --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.22python3.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.22' +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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..60397f63 --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.22python3.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.22' +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_implmklenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..f71210a6 --- /dev/null +++ b/.ci_support/linux_64_blas_implmklenforce_avx512presentnumpy1.26python3.12.____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.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..c8e5db5e --- /dev/null +++ b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.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.22' +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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..213f84f6 --- /dev/null +++ b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.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.22' +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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..f7d31c63 --- /dev/null +++ b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.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.22' +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_implnetlibenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..9251d408 --- /dev/null +++ b/.ci_support/linux_64_blas_implnetlibenforce_avx512Nonenumpy1.26python3.12.____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.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..d869fe26 --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.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.22' +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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..9ae075d0 --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.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.22' +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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..79af6be9 --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.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.22' +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_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..4490c0f9 --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512absentnumpy1.26python3.12.____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.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..cde00e80 --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.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.22' +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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..01ec6620 --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.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.22' +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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..34b2458e --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.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.22' +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_64_blas_implopenblasenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..18432cec --- /dev/null +++ b/.ci_support/linux_64_blas_implopenblasenforce_avx512presentnumpy1.26python3.12.____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.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython.yaml similarity index 90% rename from .ci_support/linux_aarch64_numpy1.22python3.10.____cpythonpython_implcpython.yaml rename to .ci_support/linux_aarch64_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython.yaml index 79bfc9a4..1623e4ef 100644 --- a/.ci_support/linux_aarch64_numpy1.22python3.10.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython.yaml @@ -1,5 +1,7 @@ BUILD: - aarch64-conda_cos7-linux-gnu +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: @@ -18,6 +20,8 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.22python3.9.____cpythonpython_implcpython.yaml similarity index 90% rename from .ci_support/linux_aarch64_numpy1.22python3.9.____cpythonpython_implcpython.yaml rename to .ci_support/linux_aarch64_blas_implnetlibnumpy1.22python3.9.____cpythonpython_implcpython.yaml index ecaa21b9..f9950e95 100644 --- a/.ci_support/linux_aarch64_numpy1.22python3.9.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.22python3.9.____cpythonpython_implcpython.yaml @@ -1,5 +1,7 @@ BUILD: - aarch64-conda_cos7-linux-gnu +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: @@ -18,6 +20,8 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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 90% 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 7f19a9e1..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,5 +1,7 @@ BUILD: - aarch64-conda_cos7-linux-gnu +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: @@ -18,6 +20,8 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython.yaml similarity index 90% rename from .ci_support/linux_aarch64_numpy1.26python3.12.____cpythonpython_implcpython.yaml rename to .ci_support/linux_aarch64_blas_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython.yaml index e64febd6..928775c6 100644 --- a/.ci_support/linux_aarch64_numpy1.26python3.12.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_aarch64_blas_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython.yaml @@ -1,5 +1,7 @@ BUILD: - aarch64-conda_cos7-linux-gnu +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: @@ -18,6 +20,8 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.22python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..a2ab506f --- /dev/null +++ b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.22python3.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.22' +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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.22python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..79f19c0c --- /dev/null +++ b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.22python3.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.22' +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_aarch64_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..afbc4595 --- /dev/null +++ b/.ci_support/linux_aarch64_blas_implopenblasnumpy1.26python3.12.____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.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython.yaml similarity index 89% rename from .ci_support/linux_ppc64le_numpy1.22python3.10.____cpythonpython_implcpython.yaml rename to .ci_support/linux_ppc64le_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython.yaml index e9c81a3d..f64b083a 100644 --- a/.ci_support/linux_ppc64le_numpy1.22python3.10.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython.yaml @@ -1,3 +1,5 @@ +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: @@ -14,6 +16,8 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.22python3.9.____cpythonpython_implcpython.yaml similarity index 89% rename from .ci_support/linux_ppc64le_numpy1.22python3.9.____cpythonpython_implcpython.yaml rename to .ci_support/linux_ppc64le_blas_implnetlibnumpy1.22python3.9.____cpythonpython_implcpython.yaml index 6439e4a9..bc4951cb 100644 --- a/.ci_support/linux_ppc64le_numpy1.22python3.9.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.22python3.9.____cpythonpython_implcpython.yaml @@ -1,3 +1,5 @@ +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: @@ -14,6 +16,8 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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 89% 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 9bae5f05..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,3 +1,5 @@ +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: @@ -14,6 +16,8 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython.yaml similarity index 89% rename from .ci_support/linux_ppc64le_numpy1.26python3.12.____cpythonpython_implcpython.yaml rename to .ci_support/linux_ppc64le_blas_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython.yaml index b5f78110..65e32011 100644 --- a/.ci_support/linux_ppc64le_numpy1.26python3.12.____cpythonpython_implcpython.yaml +++ b/.ci_support/linux_ppc64le_blas_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython.yaml @@ -1,3 +1,5 @@ +blas_impl: +- netlib c_compiler: - gcc c_compiler_version: @@ -14,6 +16,8 @@ cxx_compiler_version: - '12' docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.22python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..74306c49 --- /dev/null +++ b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.22python3.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.22' +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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.22python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..e6d0939c --- /dev/null +++ b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.22python3.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.22' +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/linux_ppc64le_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..5f06d647 --- /dev/null +++ b/.ci_support/linux_ppc64le_blas_implopenblasnumpy1.26python3.12.____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.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implacceleratenumpy1.22python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..6430f445 --- /dev/null +++ b/.ci_support/osx_64_blas_implacceleratenumpy1.22python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.22' +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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/osx_64_blas_implacceleratenumpy1.22python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..cfae38bc --- /dev/null +++ b/.ci_support/osx_64_blas_implacceleratenumpy1.22python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.22' +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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implacceleratenumpy1.22python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..5e5d2d20 --- /dev/null +++ b/.ci_support/osx_64_blas_implacceleratenumpy1.22python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.22' +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..fbd002e2 --- /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: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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_implacceleratenumpy1.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implacceleratenumpy1.26python3.12.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..9361d324 --- /dev/null +++ b/.ci_support/osx_64_blas_implacceleratenumpy1.26python3.12.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implblisnumpy1.22python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..c4a223f5 --- /dev/null +++ b/.ci_support/osx_64_blas_implblisnumpy1.22python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- blis +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.22' +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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/osx_64_blas_implblisnumpy1.22python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..9573afee --- /dev/null +++ b/.ci_support/osx_64_blas_implblisnumpy1.22python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- blis +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.22' +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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implblisnumpy1.22python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..25c51326 --- /dev/null +++ b/.ci_support/osx_64_blas_implblisnumpy1.22python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- blis +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.22' +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..08f8a133 --- /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: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implblisnumpy1.26python3.12.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..dae1a2f0 --- /dev/null +++ b/.ci_support/osx_64_blas_implblisnumpy1.26python3.12.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- blis +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implmklnumpy1.22python3.10.____cpythonpython_implcpython.yaml similarity index 90% rename from .ci_support/osx_64_numpy1.22python3.10.____cpythonpython_implcpython.yaml rename to .ci_support/osx_64_blas_implmklnumpy1.22python3.10.____cpythonpython_implcpython.yaml index 7ac06046..5dc03d92 100644 --- a/.ci_support/osx_64_numpy1.22python3.10.____cpythonpython_implcpython.yaml +++ b/.ci_support/osx_64_blas_implmklnumpy1.22python3.10.____cpythonpython_implcpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +blas_impl: +- mkl c_compiler: - clang c_compiler_version: @@ -12,6 +14,8 @@ cxx_compiler: - clangxx cxx_compiler_version: - '16' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/osx_64_blas_implmklnumpy1.22python3.9.____73_pypypython_implpypy.yaml similarity index 89% rename from .ci_support/osx_64_numpy1.22python3.9.____73_pypypython_implpypy.yaml rename to .ci_support/osx_64_blas_implmklnumpy1.22python3.9.____73_pypypython_implpypy.yaml index 41f4041a..4417cdd8 100644 --- a/.ci_support/osx_64_numpy1.22python3.9.____73_pypypython_implpypy.yaml +++ b/.ci_support/osx_64_blas_implmklnumpy1.22python3.9.____73_pypypython_implpypy.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +blas_impl: +- mkl c_compiler: - clang c_compiler_version: @@ -12,6 +14,8 @@ cxx_compiler: - clangxx cxx_compiler_version: - '16' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implmklnumpy1.22python3.9.____cpythonpython_implcpython.yaml similarity index 89% rename from .ci_support/osx_64_numpy1.22python3.9.____cpythonpython_implcpython.yaml rename to .ci_support/osx_64_blas_implmklnumpy1.22python3.9.____cpythonpython_implcpython.yaml index 15c05c65..3a6497f9 100644 --- a/.ci_support/osx_64_numpy1.22python3.9.____cpythonpython_implcpython.yaml +++ b/.ci_support/osx_64_blas_implmklnumpy1.22python3.9.____cpythonpython_implcpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +blas_impl: +- mkl c_compiler: - clang c_compiler_version: @@ -12,6 +14,8 @@ cxx_compiler: - clangxx cxx_compiler_version: - '16' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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 90% 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 2cb6fa35..6833dcba 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,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +blas_impl: +- mkl c_compiler: - clang c_compiler_version: @@ -12,6 +14,8 @@ cxx_compiler: - clangxx cxx_compiler_version: - '16' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implmklnumpy1.26python3.12.____cpythonpython_implcpython.yaml similarity index 90% rename from .ci_support/osx_64_numpy1.26python3.12.____cpythonpython_implcpython.yaml rename to .ci_support/osx_64_blas_implmklnumpy1.26python3.12.____cpythonpython_implcpython.yaml index 9555eb4a..a51d6a61 100644 --- a/.ci_support/osx_64_numpy1.26python3.12.____cpythonpython_implcpython.yaml +++ b/.ci_support/osx_64_blas_implmklnumpy1.26python3.12.____cpythonpython_implcpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +blas_impl: +- mkl c_compiler: - clang c_compiler_version: @@ -12,6 +14,8 @@ cxx_compiler: - clangxx cxx_compiler_version: - '16' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..b067848b --- /dev/null +++ b/.ci_support/osx_64_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- netlib +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.22' +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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/osx_64_blas_implnetlibnumpy1.22python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..470fceb9 --- /dev/null +++ b/.ci_support/osx_64_blas_implnetlibnumpy1.22python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- netlib +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.22' +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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implnetlibnumpy1.22python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..fba73cca --- /dev/null +++ b/.ci_support/osx_64_blas_implnetlibnumpy1.22python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- netlib +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.22' +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..37b14315 --- /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: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..432171fa --- /dev/null +++ b/.ci_support/osx_64_blas_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- netlib +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implopenblasnumpy1.22python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..fc3e9fc6 --- /dev/null +++ b/.ci_support/osx_64_blas_implopenblasnumpy1.22python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.22' +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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/osx_64_blas_implopenblasnumpy1.22python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..30f19586 --- /dev/null +++ b/.ci_support/osx_64_blas_implopenblasnumpy1.22python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.22' +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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implopenblasnumpy1.22python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..f1e8a1c1 --- /dev/null +++ b/.ci_support/osx_64_blas_implopenblasnumpy1.22python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.22' +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..6475e4f0 --- /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: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/osx_64_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..f2743042 --- /dev/null +++ b/.ci_support/osx_64_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpython.yaml b/.ci_support/osx_arm64_blas_implacceleratenumpy1.22python3.10.____cpython.yaml new file mode 100644 index 00000000..0d1c0603 --- /dev/null +++ b/.ci_support/osx_arm64_blas_implacceleratenumpy1.22python3.10.____cpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.22' +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.22python3.9.____cpython.yaml b/.ci_support/osx_arm64_blas_implacceleratenumpy1.22python3.9.____cpython.yaml new file mode 100644 index 00000000..cc2dd1a3 --- /dev/null +++ b/.ci_support/osx_arm64_blas_implacceleratenumpy1.22python3.9.____cpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.22' +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..a6a9611c --- /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: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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_blas_implacceleratenumpy1.26python3.12.____cpython.yaml b/.ci_support/osx_arm64_blas_implacceleratenumpy1.26python3.12.____cpython.yaml new file mode 100644 index 00000000..a14de3da --- /dev/null +++ b/.ci_support/osx_arm64_blas_implacceleratenumpy1.26python3.12.____cpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +blas_impl: +- accelerate +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpython.yaml b/.ci_support/osx_arm64_blas_implnetlibnumpy1.22python3.10.____cpython.yaml similarity index 89% rename from .ci_support/osx_arm64_numpy1.22python3.10.____cpython.yaml rename to .ci_support/osx_arm64_blas_implnetlibnumpy1.22python3.10.____cpython.yaml index 949d67ca..203e1d0a 100644 --- a/.ci_support/osx_arm64_numpy1.22python3.10.____cpython.yaml +++ b/.ci_support/osx_arm64_blas_implnetlibnumpy1.22python3.10.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +blas_impl: +- netlib c_compiler: - clang c_compiler_version: @@ -12,6 +14,8 @@ cxx_compiler: - clangxx cxx_compiler_version: - '16' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.22python3.9.____cpython.yaml b/.ci_support/osx_arm64_blas_implnetlibnumpy1.22python3.9.____cpython.yaml similarity index 89% rename from .ci_support/osx_arm64_numpy1.22python3.9.____cpython.yaml rename to .ci_support/osx_arm64_blas_implnetlibnumpy1.22python3.9.____cpython.yaml index 20fefb21..ace178cb 100644 --- a/.ci_support/osx_arm64_numpy1.22python3.9.____cpython.yaml +++ b/.ci_support/osx_arm64_blas_implnetlibnumpy1.22python3.9.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +blas_impl: +- netlib c_compiler: - clang c_compiler_version: @@ -12,6 +14,8 @@ cxx_compiler: - clangxx cxx_compiler_version: - '16' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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 89% rename from .ci_support/osx_arm64_numpy1.23python3.11.____cpython.yaml rename to .ci_support/osx_arm64_blas_implnetlibnumpy1.23python3.11.____cpython.yaml index 04c15887..9fd80ac2 100644 --- a/.ci_support/osx_arm64_numpy1.23python3.11.____cpython.yaml +++ b/.ci_support/osx_arm64_blas_implnetlibnumpy1.23python3.11.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +blas_impl: +- netlib c_compiler: - clang c_compiler_version: @@ -12,6 +14,8 @@ cxx_compiler: - clangxx cxx_compiler_version: - '16' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.26python3.12.____cpython.yaml b/.ci_support/osx_arm64_blas_implnetlibnumpy1.26python3.12.____cpython.yaml similarity index 89% rename from .ci_support/osx_arm64_numpy1.26python3.12.____cpython.yaml rename to .ci_support/osx_arm64_blas_implnetlibnumpy1.26python3.12.____cpython.yaml index 73c4f001..56be54d0 100644 --- a/.ci_support/osx_arm64_numpy1.26python3.12.____cpython.yaml +++ b/.ci_support/osx_arm64_blas_implnetlibnumpy1.26python3.12.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +blas_impl: +- netlib c_compiler: - clang c_compiler_version: @@ -12,6 +14,8 @@ cxx_compiler: - clangxx cxx_compiler_version: - '16' +enforce_avx512: +- None fortran_compiler: - gfortran fortran_compiler_version: @@ -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.22python3.10.____cpython.yaml b/.ci_support/osx_arm64_blas_implopenblasnumpy1.22python3.10.____cpython.yaml new file mode 100644 index 00000000..0c637170 --- /dev/null +++ b/.ci_support/osx_arm64_blas_implopenblasnumpy1.22python3.10.____cpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.22' +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.22python3.9.____cpython.yaml b/.ci_support/osx_arm64_blas_implopenblasnumpy1.22python3.9.____cpython.yaml new file mode 100644 index 00000000..826f6016 --- /dev/null +++ b/.ci_support/osx_arm64_blas_implopenblasnumpy1.22python3.9.____cpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.22' +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..8e433761 --- /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: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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_blas_implopenblasnumpy1.26python3.12.____cpython.yaml b/.ci_support/osx_arm64_blas_implopenblasnumpy1.26python3.12.____cpython.yaml new file mode 100644 index 00000000..c853103c --- /dev/null +++ b/.ci_support/osx_arm64_blas_implopenblasnumpy1.26python3.12.____cpython.yaml @@ -0,0 +1,51 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +blas_impl: +- openblas +c_compiler: +- clang +c_compiler_version: +- '16' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '16' +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.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython.yaml similarity index 84% rename from .ci_support/win_64_numpy1.22python3.10.____cpythonpython_implcpython.yaml rename to .ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython.yaml index 6a55ae67..7bb40135 100644 --- a/.ci_support/win_64_numpy1.22python3.10.____cpythonpython_implcpython.yaml +++ b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.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: @@ -25,6 +29,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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy.yaml similarity index 84% rename from .ci_support/win_64_numpy1.22python3.9.____73_pypypython_implpypy.yaml rename to .ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy.yaml index 96727856..d787e2ef 100644 --- a/.ci_support/win_64_numpy1.22python3.9.____73_pypypython_implpypy.yaml +++ b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.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: @@ -25,6 +29,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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython.yaml similarity index 84% rename from .ci_support/win_64_numpy1.22python3.9.____cpythonpython_implcpython.yaml rename to .ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython.yaml index 9e68e7c4..39d22f8c 100644 --- a/.ci_support/win_64_numpy1.22python3.9.____cpythonpython_implcpython.yaml +++ b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.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: @@ -25,6 +29,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 84% 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 1e017563..7622e894 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: @@ -25,6 +29,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.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython.yaml similarity index 84% rename from .ci_support/win_64_numpy1.26python3.12.____cpythonpython_implcpython.yaml rename to .ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython.yaml index ae39b7d0..738465bb 100644 --- a/.ci_support/win_64_numpy1.26python3.12.____cpythonpython_implcpython.yaml +++ b/.ci_support/win_64_blas_implblisenforce_avx512Nonenumpy1.26python3.12.____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: @@ -25,6 +29,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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..76292b0f --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.22' +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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..cab71ec7 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,36 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.22' +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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..6551a0f4 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.22' +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..775653ad --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +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_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..2d8ad5d8 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..41417ecb --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.22' +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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..0170d685 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,36 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.22' +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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..c318a5e1 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.22' +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..27ecbec4 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +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.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..c88b9b14 --- /dev/null +++ b/.ci_support/win_64_blas_implmklenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- mkl +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..75e5c692 --- /dev/null +++ b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- netlib +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.22' +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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..e0eac3b8 --- /dev/null +++ b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,36 @@ +blas_impl: +- netlib +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.22' +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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..e7e6358c --- /dev/null +++ b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- netlib +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.22' +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..3b1fe137 --- /dev/null +++ b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- netlib +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +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.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..b02b0f49 --- /dev/null +++ b/.ci_support/win_64_blas_implnetlibenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- netlib +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..ccd6a7f4 --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.22' +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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..e128b0e4 --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,36 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.22' +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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..f29c9248 --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.22' +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..939f3ed3 --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +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.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..44d5942a --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_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.22python3.10.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..d8cf89ef --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.22' +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.22python3.9.____73_pypypython_implpypy.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy.yaml new file mode 100644 index 00000000..68cacd0a --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy.yaml @@ -0,0 +1,36 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.22' +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.22python3.9.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..fe4a17d1 --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.22' +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..8de69b15 --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +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.26python3.12.____cpythonpython_implcpython.yaml b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython.yaml new file mode 100644 index 00000000..808ebe58 --- /dev/null +++ b/.ci_support/win_64_blas_implopenblasenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython.yaml @@ -0,0 +1,36 @@ +blas_impl: +- openblas +c_compiler: +- vs2019 +channel_sources: +- conda-forge/label/meson_dev,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 +numpy: +- '1.26' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_cpython +python_impl: +- cpython +target_platform: +- win-64 +zip_keys: +- - blas_impl + - enforce_avx512 +- - python + - numpy + - python_impl diff --git a/.gitignore b/.gitignore index c89ecb7d..c0029107 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,13 @@ -*.pyc +# User content belongs under recipe/. +# Feedstock configuration goes in `conda-forge.yml` +# Everything else is managed by the conda-smithy rerender process. +# Please do not modify + +* +!/conda-forge.yml -build_artifacts +!/*/ +!/recipe/** +!/.ci_support/** + +*.pyc diff --git a/.scripts/build_steps.sh b/.scripts/build_steps.sh index 064e539a..eba1dfdb 100755 --- a/.scripts/build_steps.sh +++ b/.scripts/build_steps.sh @@ -34,9 +34,9 @@ CONDARC export CONDA_LIBMAMBA_SOLVER_NO_CHANNELS_FROM_INSTALLED=1 mamba install --update-specs --yes --quiet --channel conda-forge --strict-channel-priority \ - pip mamba conda-build conda-forge-ci-setup=4 + pip mamba conda-build boa conda-forge-ci-setup=4 mamba update --update-specs --yes --quiet --channel conda-forge --strict-channel-priority \ - pip mamba conda-build conda-forge-ci-setup=4 + pip mamba conda-build boa conda-forge-ci-setup=4 # set up the condarc setup_conda_rc "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}" @@ -74,7 +74,7 @@ if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then # Drop into an interactive shell /bin/bash else - conda build "${RECIPE_ROOT}" -m "${CI_SUPPORT}/${CONFIG}.yaml" \ + conda mambabuild "${RECIPE_ROOT}" -m "${CI_SUPPORT}/${CONFIG}.yaml" \ --suppress-variables ${EXTRA_CB_OPTIONS:-} \ --clobber-file "${CI_SUPPORT}/clobber_${CONFIG}.yaml" \ --extra-meta flow_run_id="${flow_run_id:-}" remote_url="${remote_url:-}" sha="${sha:-}" diff --git a/.scripts/run_osx_build.sh b/.scripts/run_osx_build.sh index 46ab346d..9259eb93 100755 --- a/.scripts/run_osx_build.sh +++ b/.scripts/run_osx_build.sh @@ -26,9 +26,9 @@ export CONDA_SOLVER="libmamba" export CONDA_LIBMAMBA_SOLVER_NO_CHANNELS_FROM_INSTALLED=1 mamba install --update-specs --quiet --yes --channel conda-forge --strict-channel-priority \ - pip mamba conda-build conda-forge-ci-setup=4 + pip mamba conda-build boa conda-forge-ci-setup=4 mamba update --update-specs --yes --quiet --channel conda-forge --strict-channel-priority \ - pip mamba conda-build conda-forge-ci-setup=4 + pip mamba conda-build boa conda-forge-ci-setup=4 @@ -81,7 +81,7 @@ else EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --no-test" fi - conda build ./recipe -m ./.ci_support/${CONFIG}.yaml \ + conda mambabuild ./recipe -m ./.ci_support/${CONFIG}.yaml \ --suppress-variables ${EXTRA_CB_OPTIONS:-} \ --clobber-file ./.ci_support/clobber_${CONFIG}.yaml \ --extra-meta flow_run_id="$flow_run_id" remote_url="$remote_url" sha="$sha" diff --git a/.scripts/run_win_build.bat b/.scripts/run_win_build.bat index 5b2b8492..48734de9 100755 --- a/.scripts/run_win_build.bat +++ b/.scripts/run_win_build.bat @@ -24,7 +24,7 @@ set "CONDA_LIBMAMBA_SOLVER_NO_CHANNELS_FROM_INSTALLED=1" :: Provision the necessary dependencies to build the recipe later echo Installing dependencies -mamba.exe install "python=3.10" pip mamba conda-build conda-forge-ci-setup=4 -c conda-forge --strict-channel-priority --yes +mamba.exe install "python=3.10" pip mamba conda-build boa conda-forge-ci-setup=4 -c conda-forge --strict-channel-priority --yes if !errorlevel! neq 0 exit /b !errorlevel! :: Set basic configuration @@ -42,7 +42,9 @@ if EXIST LICENSE.txt ( copy LICENSE.txt "recipe\\recipe-scripts-license.txt" ) if NOT [%HOST_PLATFORM%] == [%BUILD_PLATFORM%] ( - set "EXTRA_CB_OPTIONS=%EXTRA_CB_OPTIONS% --no-test" + if [%CROSSCOMPILING_EMULATOR%] == [] ( + set "EXTRA_CB_OPTIONS=%EXTRA_CB_OPTIONS% --no-test" + ) ) if NOT [%flow_run_id%] == [] ( @@ -53,7 +55,7 @@ call :end_group :: Build the recipe echo Building recipe -conda.exe build "recipe" -m .ci_support\%CONFIG%.yaml --suppress-variables %EXTRA_CB_OPTIONS% +conda.exe mambabuild "recipe" -m .ci_support\%CONFIG%.yaml --suppress-variables %EXTRA_CB_OPTIONS% if !errorlevel! neq 0 exit /b !errorlevel! :: Prepare some environment variables for the upload step diff --git a/README.md b/README.md index 861b8ed1..0db4b077 100644 --- a/README.md +++ b/README.md @@ -35,192 +35,794 @@ Current build status - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
VariantStatus
linux_64_numpy1.22python3.10.____cpythonpython_implcpythonlinux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython - variant + variant
linux_64_numpy1.22python3.9.____73_pypypython_implpypylinux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy - variant + variant
linux_64_numpy1.22python3.9.____cpythonpython_implcpythonlinux_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython - variant + variant
linux_64_numpy1.23python3.11.____cpythonpython_implcpythonlinux_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython - variant + variant
linux_64_numpy1.26python3.12.____cpythonpython_implcpythonlinux_64_blas_implblisenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython - variant + variant
linux_aarch64_numpy1.22python3.10.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython - variant + variant
linux_aarch64_numpy1.22python3.9.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy - variant + variant
linux_aarch64_numpy1.23python3.11.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____cpythonpython_implcpython - variant + variant
linux_aarch64_numpy1.26python3.12.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython - variant + variant
linux_ppc64le_numpy1.22python3.10.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython - variant + variant
linux_ppc64le_numpy1.22python3.9.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython - variant + variant
linux_ppc64le_numpy1.23python3.11.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy - variant + variant
linux_ppc64le_numpy1.26python3.12.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython - variant + variant
osx_64_numpy1.22python3.10.____cpythonpython_implcpythonlinux_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython - variant + variant
osx_64_numpy1.22python3.9.____73_pypypython_implpypylinux_64_blas_implmklenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython - variant + variant
osx_64_numpy1.22python3.9.____cpythonpython_implcpythonlinux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython - variant + variant
osx_64_numpy1.23python3.11.____cpythonpython_implcpythonlinux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy - variant + variant
osx_64_numpy1.26python3.12.____cpythonpython_implcpythonlinux_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython - variant + variant
osx_arm64_numpy1.22python3.10.____cpythonlinux_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython - variant + variant
osx_arm64_numpy1.22python3.9.____cpythonlinux_64_blas_implnetlibenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython - variant + variant
osx_arm64_numpy1.23python3.11.____cpythonlinux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython - variant + variant
osx_arm64_numpy1.26python3.12.____cpythonlinux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy - variant + variant
win_64_numpy1.22python3.10.____cpythonpython_implcpythonlinux_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____cpythonpython_implcpython - variant + variant
win_64_numpy1.22python3.9.____73_pypypython_implpypylinux_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython - variant + variant
win_64_numpy1.22python3.9.____cpythonpython_implcpythonlinux_64_blas_implopenblasenforce_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython - variant + variant
win_64_numpy1.23python3.11.____cpythonpython_implcpythonlinux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython - variant + variant
win_64_numpy1.26python3.12.____cpythonpython_implcpythonlinux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy - variant + variant + +
linux_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython + + variant + +
linux_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
linux_64_blas_implopenblasenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython + + variant + +
linux_aarch64_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython + + variant + +
linux_aarch64_blas_implnetlibnumpy1.22python3.9.____cpythonpython_implcpython + + variant + +
linux_aarch64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
linux_aarch64_blas_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython + + variant + +
linux_aarch64_blas_implopenblasnumpy1.22python3.10.____cpythonpython_implcpython + + variant + +
linux_aarch64_blas_implopenblasnumpy1.22python3.9.____cpythonpython_implcpython + + variant + +
linux_aarch64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
linux_aarch64_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython + + variant + +
linux_ppc64le_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython + + variant + +
linux_ppc64le_blas_implnetlibnumpy1.22python3.9.____cpythonpython_implcpython + + variant + +
linux_ppc64le_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
linux_ppc64le_blas_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython + + variant + +
linux_ppc64le_blas_implopenblasnumpy1.22python3.10.____cpythonpython_implcpython + + variant + +
linux_ppc64le_blas_implopenblasnumpy1.22python3.9.____cpythonpython_implcpython + + variant + +
linux_ppc64le_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
linux_ppc64le_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython + + variant + +
osx_64_blas_implacceleratenumpy1.22python3.10.____cpythonpython_implcpython + + variant + +
osx_64_blas_implacceleratenumpy1.22python3.9.____73_pypypython_implpypy + + variant + +
osx_64_blas_implacceleratenumpy1.22python3.9.____cpythonpython_implcpython + + variant + +
osx_64_blas_implacceleratenumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
osx_64_blas_implacceleratenumpy1.26python3.12.____cpythonpython_implcpython + + variant + +
osx_64_blas_implblisnumpy1.22python3.10.____cpythonpython_implcpython + + variant + +
osx_64_blas_implblisnumpy1.22python3.9.____73_pypypython_implpypy + + variant + +
osx_64_blas_implblisnumpy1.22python3.9.____cpythonpython_implcpython + + variant + +
osx_64_blas_implblisnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
osx_64_blas_implblisnumpy1.26python3.12.____cpythonpython_implcpython + + variant + +
osx_64_blas_implmklnumpy1.22python3.10.____cpythonpython_implcpython + + variant + +
osx_64_blas_implmklnumpy1.22python3.9.____73_pypypython_implpypy + + variant + +
osx_64_blas_implmklnumpy1.22python3.9.____cpythonpython_implcpython + + variant + +
osx_64_blas_implmklnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
osx_64_blas_implmklnumpy1.26python3.12.____cpythonpython_implcpython + + variant + +
osx_64_blas_implnetlibnumpy1.22python3.10.____cpythonpython_implcpython + + variant + +
osx_64_blas_implnetlibnumpy1.22python3.9.____73_pypypython_implpypy + + variant + +
osx_64_blas_implnetlibnumpy1.22python3.9.____cpythonpython_implcpython + + variant + +
osx_64_blas_implnetlibnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
osx_64_blas_implnetlibnumpy1.26python3.12.____cpythonpython_implcpython + + variant + +
osx_64_blas_implopenblasnumpy1.22python3.10.____cpythonpython_implcpython + + variant + +
osx_64_blas_implopenblasnumpy1.22python3.9.____73_pypypython_implpypy + + variant + +
osx_64_blas_implopenblasnumpy1.22python3.9.____cpythonpython_implcpython + + variant + +
osx_64_blas_implopenblasnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
osx_64_blas_implopenblasnumpy1.26python3.12.____cpythonpython_implcpython + + variant + +
osx_arm64_blas_implacceleratenumpy1.22python3.10.____cpython + + variant + +
osx_arm64_blas_implacceleratenumpy1.22python3.9.____cpython + + variant + +
osx_arm64_blas_implacceleratenumpy1.23python3.11.____cpython + + variant + +
osx_arm64_blas_implacceleratenumpy1.26python3.12.____cpython + + variant + +
osx_arm64_blas_implnetlibnumpy1.22python3.10.____cpython + + variant + +
osx_arm64_blas_implnetlibnumpy1.22python3.9.____cpython + + variant + +
osx_arm64_blas_implnetlibnumpy1.23python3.11.____cpython + + variant + +
osx_arm64_blas_implnetlibnumpy1.26python3.12.____cpython + + variant + +
osx_arm64_blas_implopenblasnumpy1.22python3.10.____cpython + + variant + +
osx_arm64_blas_implopenblasnumpy1.22python3.9.____cpython + + variant + +
osx_arm64_blas_implopenblasnumpy1.23python3.11.____cpython + + variant + +
osx_arm64_blas_implopenblasnumpy1.26python3.12.____cpython + + variant + +
win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython + + variant + +
win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy + + variant + +
win_64_blas_implblisenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython + + variant + +
win_64_blas_implblisenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
win_64_blas_implblisenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython + + variant + +
win_64_blas_implmklenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython + + variant + +
win_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy + + variant + +
win_64_blas_implmklenforce_avx512absentnumpy1.22python3.9.____cpythonpython_implcpython + + variant + +
win_64_blas_implmklenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
win_64_blas_implmklenforce_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython + + variant + +
win_64_blas_implmklenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython + + variant + +
win_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy + + variant + +
win_64_blas_implmklenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython + + variant + +
win_64_blas_implmklenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
win_64_blas_implmklenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython + + variant + +
win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.10.____cpythonpython_implcpython + + variant + +
win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____73_pypypython_implpypy + + variant + +
win_64_blas_implnetlibenforce_avx512Nonenumpy1.22python3.9.____cpythonpython_implcpython + + variant + +
win_64_blas_implnetlibenforce_avx512Nonenumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
win_64_blas_implnetlibenforce_avx512Nonenumpy1.26python3.12.____cpythonpython_implcpython + + variant + +
win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.10.____cpythonpython_implcpython + + variant + +
win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____73_pypypython_implpypy + + variant + +
win_64_blas_implopenblasenforce_avx512absentnumpy1.22python3.9.____cpythonpython_implcpython + + variant + +
win_64_blas_implopenblasenforce_avx512absentnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
win_64_blas_implopenblasenforce_avx512absentnumpy1.26python3.12.____cpythonpython_implcpython + + variant + +
win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.10.____cpythonpython_implcpython + + variant + +
win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____73_pypypython_implpypy + + variant + +
win_64_blas_implopenblasenforce_avx512presentnumpy1.22python3.9.____cpythonpython_implcpython + + variant + +
win_64_blas_implopenblasenforce_avx512presentnumpy1.23python3.11.____cpythonpython_implcpython + + variant + +
win_64_blas_implopenblasenforce_avx512presentnumpy1.26python3.12.____cpythonpython_implcpython + + variant