Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 26 additions & 26 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "3.9.0" %}
{% set version = "3.10.0" %}
# if build_num is reset to 0 (for new version), update increment for blas_minor below
{% set build_num = 9 %}
{% set version_major = version.split(".")[0] %}
Expand All @@ -10,19 +10,19 @@

package:
name: blas-split
version: "{{ version }}"
version: {{ version }}

source:
url: https://github.com/Reference-LAPACK/lapack/archive/v{{ version }}.tar.gz
sha256: 106087f1bb5f46afdfba7f569d0cbe23dacb9a07cd24733765a0e89dbe1ad573
sha256: 328c1bea493a32cac5257d84157dc686cc3ab0b004e2bea22044e0a59f6f8a19
patches:
# Test BLAS and LAPACKE in addition to LAPACK
- patches/0001-Test-BLAS-and-LAPACKE-in-addition-to-LAPACK.patch
# Only the test-suite is compiled here, and we therefore do not need to
# carry all the patches that the lapack-feedstock has (see comment below)

build:
number: "{{ build_num }}"
number: {{ build_num }}

requirements:
build:
Expand All @@ -49,14 +49,14 @@ requirements:

outputs:
- name: libblas
script: build_pkg.sh # [unix]
script: build_pkg.bat # [win]
script: build_pkg.sh # [unix]
script: build_pkg.bat # [win]
build:
string: "{{ build_num }}_{{ blas_impl }}"
string: {{ build_num }}_{{ blas_impl }}
run_exports:
- {{ pin_subpackage("libblas", max_pin="x") }}
track_features:
- blas_{{ blas_impl }} # [blas_impl != blas_default_impl]
- blas_{{ blas_impl }} # [blas_impl != blas_default_impl]
requirements:
host:
- libopenblas 0.3.15 # [blas_impl == 'openblas']
Expand Down Expand Up @@ -87,14 +87,14 @@ outputs:
- if not exist %LIBRARY_BIN%/libblas.dll exit 1 # [win]

- name: libcblas
script: build_pkg.sh # [unix]
script: build_pkg.bat # [win]
script: build_pkg.sh # [unix]
script: build_pkg.bat # [win]
build:
string: "{{ build_num }}_{{ blas_impl }}"
string: {{ build_num }}_{{ blas_impl }}
run_exports:
- {{ pin_subpackage("libcblas", max_pin="x") }}
track_features:
- blas_{{ blas_impl }} # [blas_impl != blas_default_impl]
- blas_{{ blas_impl }} # [blas_impl != blas_default_impl]
requirements:
host:
- {{ pin_subpackage("libblas", exact=True) }}
Expand All @@ -118,14 +118,14 @@ outputs:

{% if blas_impl != 'blis' %}
- name: liblapack
script: build_pkg.sh # [unix]
script: build_pkg.bat # [win]
script: build_pkg.sh # [unix]
script: build_pkg.bat # [win]
build:
string: "{{ build_num }}_{{ blas_impl }}"
string: {{ build_num }}_{{ blas_impl }}
run_exports:
- {{ pin_subpackage("liblapack", max_pin="x.x") }}
track_features:
- blas_{{ blas_impl }} # [blas_impl != blas_default_impl]
- blas_{{ blas_impl }} # [blas_impl != blas_default_impl]
requirements:
host:
- {{ pin_subpackage("libblas", exact=True) }}
Expand All @@ -148,14 +148,14 @@ outputs:
- if not exist %LIBRARY_BIN%/liblapack.dll exit 1 # [win]

- name: liblapacke
script: build_pkg.sh # [unix]
script: build_pkg.bat # [win]
script: build_pkg.sh # [unix]
script: build_pkg.bat # [win]
build:
string: "{{ build_num }}_{{ blas_impl }}"
string: {{ build_num }}_{{ blas_impl }}
run_exports:
- {{ pin_subpackage("liblapacke", max_pin="x.x") }}
track_features:
- blas_{{ blas_impl }} # [blas_impl != blas_default_impl]
- blas_{{ blas_impl }} # [blas_impl != blas_default_impl]
requirements:
host:
- {{ pin_subpackage("libblas", exact=True) }}
Expand All @@ -182,9 +182,9 @@ outputs:

- name: blas-devel
# uses lapack {{ version }}, not {{ blas_major }}
script: install_blas_devel.sh # [unix]
script: install_blas_devel.sh # [unix]
build:
string: "{{ build_num }}_{{ blas_impl }}"
string: {{ build_num }}_{{ blas_impl }}
requirements:
host:
- openblas # [blas_impl == "openblas"]
Expand All @@ -208,12 +208,12 @@ outputs:

# For compatiblity
- name: blas
version: "{{ blas_major }}.{{ blas_minor }}"
script: test_blas.sh # [unix]
version: {{ blas_major }}.{{ blas_minor }}
script: test_blas.sh # [unix]
script: test_blas.bat # [win]
build:
string: "{{ blas_impl }}"
activate_in_script: True
string: {{ blas_impl }}
activate_in_script: true
requirements:
build:
- {{ compiler('c') }} # [unix]
Expand Down