Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .azure-pipelines/azure-pipelines-linux.yml

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

12 changes: 6 additions & 6 deletions .azure-pipelines/azure-pipelines-osx.yml

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

4 changes: 2 additions & 2 deletions .azure-pipelines/azure-pipelines-win.yml

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

File renamed without changes.
8 changes: 4 additions & 4 deletions .drone.yml

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

4 changes: 2 additions & 2 deletions .travis.yml

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

40 changes: 20 additions & 20 deletions README.md

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

8 changes: 6 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set version = "3.9.0" %}
{% set build_num = "1" %}
{% set build_num = "2" %}
{% set version_major = version.split(".")[0] %}

{% if unix %}
Expand Down Expand Up @@ -29,10 +29,14 @@ source:
# ===OTHER BUG FIXES===
# from Reference-LAPACK/lapack#390, see also xianyi/OpenBLAS#2442
- patches/0004-NaN-not-propagating-in-DCOMBSSQ-and-SCOMBSSQ.patch
# from Reference-LAPACK/lapack#408
# from Reference-LAPACK/lapack#408, see also xianyi/OpenBLAS#2635
- patches/0005-Fix-the-loop-index-scalar-in-ZHEEQUB.f.patch
# from Reference-LAPACK/lapack#436, see also xianyi/OpenBLAS#2817
- patches/0006-Fix-some-minor-inconsistencies-in-LAPACK-E-_-cz-gesv.patch
# from Reference-LAPACK/lapack#443, see also xianyi/OpenBLAS#2845
- patches/0007-fix-workspace-query-in-dgelq.patch
# from Reference-LAPACK/lapack#445, see also xianyi/OpenBLAS#2864
- patches/0008-fix-dlanv2.patch

build:
number: "{{ build_num }}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
From 1b26dcff9774541c0c5739a02c97a527964c1d87 Mon Sep 17 00:00:00 2001
From: Isuru Fernando <isuruf@gmail.com>
Date: Thu, 22 Nov 2018 19:39:51 -0600
Subject: [PATCH 1/6] Avoid setting current_version and compatibility_version
Subject: [PATCH 1/8] Avoid setting current_version and compatibility_version
on OSX

---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
From 9ba3335009a801bae4b6dcb3df2cbdf47015f462 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@debian.org>
Date: Sat, 23 Nov 2019 12:22:20 +0100
Subject: [PATCH 2/6] Restore missing prototypes for deprecated LAPACK
Subject: [PATCH 2/8] Restore missing prototypes for deprecated LAPACK
functions

Some LAPACK functions prototypes were inadvertedly dropped in 3.9.0. As a
Expand Down
2 changes: 1 addition & 1 deletion recipe/patches/0003-Fix-MinGW-build-error.patch
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
From 769a9c4cc8a7da9a46b9bd7db21968fdfe411cc6 Mon Sep 17 00:00:00 2001
From: Julien Schueller <schueller@phimeca.com>
Date: Mon, 25 Nov 2019 19:41:16 +0100
Subject: [PATCH 3/6] Fix MinGW build error
Subject: [PATCH 3/8] Fix MinGW build error

With MinGW the build fails for some LAPACKE xgesvd routines with:
lapacke_cgesvdq.c:74:5: error: aggregate value used where an integer was expected
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
From e30d1c9ca0c08ab3559015cb33621b7f28ba801b Mon Sep 17 00:00:00 2001
From: pdalgd <55156186+pdalgd@users.noreply.github.com>
Date: Fri, 21 Feb 2020 13:24:37 +0100
Subject: [PATCH 4/6] NaN not propagating in DCOMBSSQ and SCOMBSSQ
Subject: [PATCH 4/8] NaN not propagating in DCOMBSSQ and SCOMBSSQ

---
SRC/dcombssq.f | 2 ++
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
From e69f944b6b4df8f8dd0ef4de6574ec201b415af3 Mon Sep 17 00:00:00 2001
From: Ilhan Polat <ilhanpolat@gmail.com>
Date: Mon, 27 Apr 2020 12:36:59 +0200
Subject: [PATCH 5/6] Fix the loop index scalar in ZHEEQUB.f
Subject: [PATCH 5/8] Fix the loop index scalar in ZHEEQUB.f

---
SRC/zheequb.f | 2 +-
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
From a6666421568ea9eaa9a1b880cf33579a88ba808c Mon Sep 17 00:00:00 2001
From: "H. Vetinari" <h.vetinari@gmx.com>
Date: Sun, 26 Apr 2020 00:57:37 +0200
Subject: [PATCH 6/6] Fix some minor inconsistencies in LAPACK(E)_[cz]gesvdq
Subject: [PATCH 6/8] Fix some minor inconsistencies in LAPACK(E)_[cz]gesvdq

For LAPACKE_cgesvdq, align datatype of `rwork` with lapacke.h and callsite
in LAPACKE_cgesvdq_work; both of the latter use `float* rwork`, so there's
Expand Down
Loading