Skip to content

Commit

Permalink
Update OpenBLAS to 0.3.28 (#2006)
Browse files Browse the repository at this point in the history
This includes a number of performance improvements, such as threading optimisations and forwarding GEMM calls to GEMV for calls where N=1 or M=1.

See: https:/OpenMathLib/OpenBLAS/releases
  • Loading branch information
Mousius authored Oct 3, 2024
1 parent 25d5a89 commit 9ef740c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aarch64_linux/build_aarch64_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def install_condaforge_python(host: RemoteHost, python_version="3.8") -> None:

def build_OpenBLAS(host: RemoteHost, git_clone_flags: str = "") -> None:
print('Building OpenBLAS')
host.run_cmd(f"git clone https:/xianyi/OpenBLAS -b v0.3.25 {git_clone_flags}")
host.run_cmd(f"git clone https:/xianyi/OpenBLAS -b v0.3.28 {git_clone_flags}")
make_flags = "NUM_THREADS=64 USE_OPENMP=1 NO_SHARED=1 DYNAMIC_ARCH=1 TARGET=ARMV8"
host.run_cmd(f"pushd OpenBLAS && make {make_flags} -j8 && sudo make {make_flags} install && popd && rm -rf OpenBLAS") # noqa: E501

Expand Down

0 comments on commit 9ef740c

Please sign in to comment.