openblas-src
openblas-src copied to clipboard
Source of BLAS and LAPACK via OpenBLAS
Add the option to compile openblas using `arm-none-eabi-gcc` (see xianyi/OpenBLAS#3073) with CMake.
### Problem First, i install `openblas` and `lapack` by brew > brew install openblas > brew install lapack -------------------- > when i use openblas-src with features `["cblas", "system"]`, i set...
I use openblas for a Python package, so I statically link most of the C dependencies I have. However, when I activate the static feature it failed the manylinux check...
As used in example code https://github.com/maoe/openblas-src/blob/print-config-fix/openblas-src/examples/config.rs to check OpenBLAS version for #60. This will be helpful in several context, and it worth including to openblas-src crate.
Split from https://github.com/blas-lapack-rs/openblas-src/issues/44#issuecomment-748438531 and merges #49 issue because it is resolved by introducing of openblas-build crate on Linux. macOS support of openblas-build crate looks have several problems. - https://github.com/blas-lapack-rs/openblas-src/runs/1399358056 -...
Hi! It's quite common in high-performance computing to reach sizes where 32-bit integers no longer cut it. As such, most people usually compile everything they can with ilp64 interface instead...
I try to compile this crate with intel-compiler (ifort) and succeed by rewriting dylib specification in `build.rs`. https://github.com/termoshtt/openblas-src/pull/1/files Do you have any plan to support intel compiler? If you are...
Rust code assumes that threads can be used without restriction. So, by default, we should disable OpenBLAS threading and enable locking with `USE_THREAD=0 USE_LOCKING=1`, since [the docs indicate that threading...
Update OpenBLAS to version 0.3.27 Also bump some dependencies