-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge version 0.3.28+ds-2+rpi1 and 0.3.28+ds-3 to produce 0.3.28+ds-3…
…+rpi1
- Loading branch information
Showing
4 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,20 @@ | ||
openblas (0.3.28+ds-2+rpi1) trixie-staging; urgency=medium | ||
openblas (0.3.28+ds-3+rpi1) trixie-staging; urgency=medium | ||
|
||
[changes brought forward from 0.2.15-1+rpi1 by Peter Michael Green <[email protected]> at Fri, 11 Mar 2016 23:39:32 +0000] | ||
* Disable arm-gcc-flags.patch which was enforcing gcc flags that are wrong | ||
for raspbian. | ||
|
||
-- Raspbian forward porter <[email protected]> Tue, 20 Aug 2024 23:47:01 +0000 | ||
-- Raspbian forward porter <[email protected]> Wed, 13 Nov 2024 10:04:22 +0000 | ||
|
||
openblas (0.3.28+ds-3) unstable; urgency=medium | ||
|
||
* Team upload. | ||
|
||
[ Dandan Zhang <[email protected]> ] | ||
* Add upstream merged patch to fix undefined reference to | ||
blas_set_parameter (Closes: #1086535) | ||
|
||
-- Gianfranco Costamagna <[email protected]> Fri, 08 Nov 2024 14:59:11 +0100 | ||
|
||
openblas (0.3.28+ds-2) unstable; urgency=medium | ||
|
||
|
19 changes: 19 additions & 0 deletions
19
debian/patches/openblas-Fixed-undefined-reference-to-blas_set_parameter.patc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Description: Fixed the undefined reference to blas_set_parameter | ||
Author: Dandan Zhang <[email protected]> | ||
Applied-Upstream: <0.3.29>, <https://github.com/OpenMathLib/OpenBLAS/pull/4877> | ||
Last-Update: 2024-11-01 | ||
|
||
--- openblas-0.3.28+ds.orig/driver/others/blas_server_omp.c | ||
+++ openblas-0.3.28+ds/driver/others/blas_server_omp.c | ||
@@ -114,9 +114,11 @@ void goto_set_num_threads(int num_thread | ||
|
||
adjust_thread_buffers(); | ||
#if defined(ARCH_MIPS64) || defined(ARCH_LOONGARCH64) | ||
+#ifndef DYNAMIC_ARCH | ||
//set parameters for different number of threads. | ||
blas_set_parameter(); | ||
+#endif | ||
#endif | ||
|
||
} | ||
void openblas_set_num_threads(int num_threads) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters