https://github.com/JuliaLang/julia
Revision b6825924aefb9ca1ca0022b3915a1c94fbf9a861 authored by Mosè Giordano on 06 January 2024, 08:41:27 UTC, committed by GitHub on 06 January 2024, 08:41:27 UTC
Memo to self:

* update version number in `stdlib/OpenBLAS_jll/Project.toml`
* update version number and sha in `deps/openblas.version`
* refresh checksums with `make -f contrib/refresh_checksums.mk -j
openblas`

In the [release notes of
v0.3.26](https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.26)
one of the more interesting point is perhaps

> included support for Apple M1 and newer targets in DYNAMIC_ARCH builds

Quoting from
https://github.com/JuliaPackaging/Yggdrasil/pull/7911#issuecomment-1878884892

> Some quick benchmarks on M1: with OpenBLAS 0.3.25:
> ```julia
> julia> using LinearAlgebra, BenchmarkTools
> 
> julia> peakflops()
> 1.7049262964078418e11
> 
> julia> x = randn(1_000); y = randn(size(x));
> 
> julia> @btime dot($x, $y);
>   402.705 ns (0 allocations: 0 bytes)
> ```
> with OpenBLAS v0.3.26:
> ```julia
> julia> using LinearAlgebra, BenchmarkTools
> 
> julia> peakflops()
> 1.8042546290642157e11
> 
> julia> x = randn(1_000); y = randn(size(x));
> 
> julia> @btime dot($x, $y);
>   143.777 ns (0 allocations: 0 bytes)
> ```
> Up to OpenBLAS v0.3.25 you can get similar performance on Apple
Silicon by exporting the environment variable
> ```sh
> OPENBLAS_CORETYPE=NEOVERSEN1
> ```
1 parent 9aaa8c7
History
Tip revision: b6825924aefb9ca1ca0022b3915a1c94fbf9a861 authored by Mosè Giordano on 06 January 2024, 08:41:27 UTC
[OpenBLAS] Ugrade to v0.3.26 (#52762)
Tip revision: b682592
File Mode Size
.devcontainer
.github
base
cli
contrib
deps
doc
etc
src
stdlib
test
.buildkite-external-version -rw-r--r-- 5 bytes
.clang-format -rw-r--r-- 3.3 KB
.clangd -rw-r--r-- 114 bytes
.codecov.yml -rw-r--r-- 52 bytes
.git-blame-ignore-revs -rw-r--r-- 371 bytes
.gitattributes -rw-r--r-- 65 bytes
.gitignore -rw-r--r-- 523 bytes
.mailmap -rw-r--r-- 12.7 KB
CITATION.bib -rw-r--r-- 513 bytes
CITATION.cff -rw-r--r-- 940 bytes
CONTRIBUTING.md -rw-r--r-- 23.4 KB
HISTORY.md -rw-r--r-- 372.8 KB
LICENSE.md -rw-r--r-- 1.3 KB
Make.inc -rw-r--r-- 55.9 KB
Makefile -rw-r--r-- 30.3 KB
NEWS.md -rw-r--r-- 9.1 KB
README.md -rw-r--r-- 7.4 KB
THIRDPARTY.md -rw-r--r-- 3.9 KB
VERSION -rw-r--r-- 11 bytes
julia.spdx.json -rw-r--r-- 37.8 KB
pkgimage.mk -rw-r--r-- 5.8 KB
sysimage.mk -rw-r--r-- 4.2 KB
typos.toml -rw-r--r-- 78 bytes

README.md

back to top