Ivan Ukhov
efaf30d536
Wrap CURDIR and DESTDIR in quotes
9 years ago
Zhang Xianyi
fb8968fb83
Refs #707 . Bugfix for previous commit.
10 years ago
Zhang Xianyi
dae6b82a71
Refs #707 . Add BUILD_LAPACK_DEPRECATED flag in Makefile.rule.
If you want to build LAPACK deprecated functions since LAPACK 3.6.0
make BUILD_LAPACK_DEPRECATED=1
10 years ago
Zhang Xianyi
aaa8551c57
Merge pull request #749 from lotheac/illumos_fixes
illumos fixes
10 years ago
Lauri Tirkkonen
7ba1d9b9ca
actually build the shared lib on illumos
10 years ago
Tony Kelman
d22917a58a
fix makefile warning when renaming symbols
use different names for `openblas*.renamed` between osx and other unices, fixes
```
Makefile:121: warning: overriding commands for target `../libopenblas64_p-r0.2.15.a.renamed'
Makefile:100: warning: ignoring old commands for target `../libopenblas64_p-r0.2.15.a.renamed'
```
also clean `*.renamed`
10 years ago
Zhang Xianyi
fba6532502
Refs #702 . Delete redundant xerbla exporting
10 years ago
Werner Saar
33e37d01b3
added lapack-3.6.0
10 years ago
j-bo
1e0bbea868
Refs #676 . Fixed ONLY_CBLAS=1 compiling bug on windows.
10 years ago
Zhang Xianyi
e127fb8fd8
1) Refs #575 . Remove g77 from compiler list.
2) If OpenBLAS cannot find Fortran compiler, it will only build BLAS
(without LAPACK).
10 years ago
Zhang Xianyi
75c40bcc48
Refs #520 . Fixed ONLY_CBLAS=1 compiling bug on OSX.
11 years ago
Martin Koehler
39cc6b21d3
Add ATLAS-style ?geadd function
11 years ago
Erik Schnetter
65a847cd36
Introduce openblas_get_num_threads and openblas_get_num_procs
11 years ago
Tony Kelman
0b4602b753
add SYMBOLPREFIX and SYMBOLSUFFIX makefile options
for adding a prefix or suffix to all exported symbol names in the shared library
Useful to avoid conflicts with other BLAS libraries, especially when using
64 bit integer interfaces in OpenBLAS
Note that since OSX does not have the objcopy utility, setting these options
to non-empty values on Mac requires the objconv tool, available (GPL license)
from http://www.agner.org/optimize/#objconv
11 years ago
wernsaar
7f234f8ed1
added GEMM3M tests
11 years ago
wernsaar
d49fd33885
disabled SYMM3M and HEMM3M functions because segment violations
11 years ago
wernsaar
7aae4a62e7
enabled use of GEMM3M functions
11 years ago
Martin Koehler
a057e5434d
add CBLAS interface for s/d/c/zimatcopy
11 years ago
Martin Köhler
7794766d3c
Add cblas_(s/d/c/z)omatcopy in order to have cblas interface for them.
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
wernsaar
be94db096c
disabled *3M functions for x86_64 platforms
11 years ago
Zhang Xianyi
7a8949e0ce
Merge branch 'develop' of https://github.com/TimothyGu/OpenBLAS into TimothyGu-develop
Conflicts:
driver/others/memory.c
11 years ago
Timothy Gu
8615d6ec87
Build import libs as .dll.a instead of .lib
This is MinGW convention.
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
11 years ago
Timothy Gu
6c2ead30f0
Remove all trailing whitespace except lapack-netlib
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
11 years ago
David Anthoff
c6361d63c2
Add -lgfortran flag to gcc call in a makefile
Adding $(EXTRALIB) adds this flag when things are built with
msys2 on windows. Without this the build fails.
11 years ago
wernsaar
faf3ac0aad
Ref #285 : added axpby kernels
11 years ago
Zhang Xianyi
a40116de25
Fixed generating DLL bug.
11 years ago
Zhang Xianyi
b31ec99372
Fixed #374 .
Merge branch 'TimothyGu-develop' into develop
11 years ago
wernsaar
219bcb119d
added lapack and lapacke timing libs by default
11 years ago
Timothy Gu
a8d4d1c4d3
Build import library for mingw
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
11 years ago
Timothy Gu
f331cb1a76
Remove code for downloading lapack tarball and the patches themselves
They are not used anymore since 3eb5af1 .
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
11 years ago
Timothy Gu
9ed981c5dc
Remove unused dll2 target
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
11 years ago
Timothy Gu
b6d904838e
Remove routines for generating exports/symbol.S
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
11 years ago
Timothy Gu
5379eff022
Remove routines for making exports/linux.def
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
11 years ago
Zhang Xianyi
0f6e79f918
Refs #324 . Upgrade LAPACK to 3.5.0 version.
12 years ago
Keno Fischer
f5a0038bad
Use FC instead of CC to link the dynamic library on OS X
Avoids problems of libgfortran not being found.
12 years ago
Zhang Xianyi
c937090121
Added gfortran dependency for LSB/lsbcc.
12 years ago
yieldthought
ce5626a384
Remove -Wl,--retain-symbols-file from dynamic library linking to fix tool support
The aim is to restrict the symbols exported from openBLAS, but for dynamic libraries --retain-symbols-file has the opposite effect intended. It removes symbols from the .symtab section of the library, which is used by tools such as debuggers, profilers, objdump etc. but does not remove them from .dynsym, which is the section used by the runtime when loading the binary.
In short, using --retain-symbols-file like this doesn't prevent symbol leakage but does prevent tools from analyzing applications linked with openBLAS.
This patch improves tool support for openBLAS applications but does not address symbol leakage through .dynsym.
12 years ago
Zhang Xianyi
c92ae012a6
Refs #279 . Provide ONLY_CBLAS flag. If you only need CBLAS without
a fortran compiler, please try make ONLY_CBLAS=1.
This mode only compiler CBLAS without BLAS fortran interface and LAPACK.
12 years ago
Zhang Xianyi
36adfe8d64
Merge branch 'hotfix-v0.2.8' into develop
12 years ago
Zhang Xianyi
a07cc39571
Refs #266 . Fixed the compiling bug with Open64 5.0.
12 years ago
Zhang Xianyi
1e1250b703
Fixed #260 . Fixed generating 32-bit shared library on previous commit.
12 years ago
Sebastien Fabbro
9f0fb6e662
Respect user's LDFLAGS
12 years ago
Zhang Xianyi
63f14189e3
Refs #259 . Fixed missing LAPACK functions in shared library.
12 years ago
Zhang Xianyi
c69e73b868
Fixed typo in generating shared library on x86_64.
12 years ago
Zhang Xianyi
5448643557
Fixed generating dll bug in last commit.
12 years ago
grisuthedragon
c19a488af2
create openblas_get_parallel to retrieve information which
parallelization model is used by OpenBLAS.
12 years ago
Zhang Xianyi
6df39ad9e7
Refs #248 . Support LAPACK and LAPACKE with lsbcc.
For LAPACKE, use LAPACK_COMPLEX_STRUCTURE.
The reson is lsbcc didn't define complex I in complex.h.
12 years ago
Zhang Xianyi
a068d54981
Refs #209 . Export the missing cblas_cdotc_sub functions.
12 years ago
Zhang Xianyi
529f1b5006
Refs#194. Export the missing LAPACK s/dlamc3 functions.
13 years ago