Registry / utility / openblas

openblas

JSON →
library0.3.29vcpkgunverified

OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.

vcpkg install openblas
INSTALL
IMPORT
SIG · OPENBLAS
O
openblas
utilitycppv0.3.29
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

cblas.h
#include <cblas.h>

Perform matrix multiplication using OpenBLAS

#include <cblas.h> int main() { double A[4] = {1, 2, 3, 4}; double B[4] = {5, 6, 7, 8}; double C[4] = {0}; cblas_dgemm(CblasRowMajor, CblasNoTrans, CblasNoTrans, 2, 2, 2, 1.0, A, 2, B, 2, 0.0, C, 2); return 0; }
Debug
Known issues
gotchaOpenBLAS uses threading; may conflict with other threading libraries
fix
Set OPENBLAS_NUM_THREADS=1 or use openblas_set_num_threads()
affects: all
Upgrade
Version history
0.3.29latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
5 hits · last 30 days
node
4
Amazon
1
Resources

No resource links recorded.

openblas — pip install openblas · libregistry