Andrew Robbins
edfe1aa471
Expose whether locking is enabled in get_config
1 year ago
Martin Kroeker
c6b1d8e7a3
fix improper function prototypes (empty parentheses)
2 years ago
Martin Kroeker
bf4642eb7e
Report USE_TLS if set
3 years ago
Andrew
4de545aa7d
address minor warnings from gcc7
6 years ago
Jeff Baylor
40e53e52d6
snprintf define consolidated to common.h
6 years ago
Martin Kroeker
97d7298973
call it OpenBLAS not just version
6 years ago
Martin Kroeker
de0d0ed52f
Improve formatting of config output
6 years ago
Martin Kroeker
816775e309
Add version information to openblas_get_config output
6 years ago
Martin Kroeker
571e9de2ac
Fix definition of snprintf for MSVC
MS _snprintf_s takes an additional argument for the size of the buffer, so is not a direct replacement (utest/ctest.h from which I copied was wrong)
7 years ago
Martin Kroeker
045fb5ea2c
Define snprintf for older versions of MSVC
for #1677
7 years ago
Martin Kroeker
41ae8e8d67
Add threading and OpenMP information to output
For #1416 and #1529 , more information about the options OpenBLAS was built with is needed. Additionally we may want to add this data to the openblas.pc file (but not all projects use pkgconfig, and as far as I am aware the cmake module for accessing it does not make such "private" declarations available)
7 years ago
Zhang Xianyi
2fb02626da
Update organization info.
11 years ago
Zhang Xianyi
552119c484
Fixed #407 . Support outputing the CPU corename on runtime.
The user can use char * openblas_get_config() or char * openblas_get_corename().
11 years ago
Timothy Gu
6c2ead30f0
Remove all trailing whitespace except lapack-netlib
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
11 years ago
Zhang Xianyi
bdf8d9411e
Refs #163 . Obtain the build configure on runtime.
openblas_get_config function returns the configure string.
So far, it supports USE64BITINT, NO_CBLAS, NO_LAPACK, NO_LAPACKE,
DYNAMIC_ARCH, NO_AFFINITY.
Example:
#include <stdio.h>
extern char * openblas_get_config();
void main()
{
printf("%s\n",openblas_get_config());
return;
}
12 years ago