Xianyi Zhang
83ecfbb9b3
Merge branch 'loongson3a' into release-0.1.0
14 years ago
Xianyi Zhang
31c836ac25
Ref #79 Added GEMM_MULTITHREAD_THRESHOLD flag to use single thread in gemm function with small matrices.
14 years ago
Xianyi Zhang
3afedbf6f0
Merge branch 'fix-crash_on_P4' into develop
14 years ago
Xianyi Zhang
b4ec36debc
Merge branch 'master' into develop
14 years ago
Xianyi Zhang
1f15bee02a
Refs #81 . Added LIBNAMESUFFIX flag in Makefile.rule. The user can use this flag to control the library name, e.g. libopenblas.a, libopenblas_ifort.a or libopenblas_omp.a.
14 years ago
unknown
dff146e306
refs #80 . Used GEMV SSE2 kernels on x86.
14 years ago
Xianyi Zhang
722dd08703
ref #80 . On P4 CPU with 32-bit Windows XP, Octave crashed with OpenBLAS. Walkaroud: Use netlib reference gemv instead of own funtions.
For example, make USE_NETLIB_GEMV=1
14 years ago
Xianyi Zhang
d047afe615
Set shared library soname in Linux.
14 years ago
Xianyi Zhang
a7a7751be7
Export CBLAS funtions on Windows DLL.
14 years ago
Xianyi Zhang
0bbf955d4c
Refs #74 . Added -lgfortran into generating shared library.
14 years ago
Xianyi Zhang
70abe10fc0
Check new LAPACK version in generating shared library.
14 years ago
Xianyi Zhang
0a696bd4ce
Improved the makefile for Intel compiler.
14 years ago
Xianyi Zhang
fda39c6cb0
Updated the Changelog.
14 years ago
Xianyi Zhang
875da22a43
Merge pull request #77 from nolta/master
fix #49 the sched_yield warnings bug on Mac OS X.
14 years ago
Mike Nolta
363a563ec2
fix #49
14 years ago
Xianyi Zhang
8da6fdc2ce
Merge branch 'hotfix-0.1alpha2.5' into develop
14 years ago
Xianyi Zhang
0caa5616f2
Merge branch 'hotfix-0.1alpha2.5'
14 years ago
Xianyi Zhang
727e6d83c0
Released 0.1 alpha 2.5. Updated the documents.
14 years ago
Xianyi Zhang
da3f101a77
Merge branch 'develop' into hotfix-0.1alpha2.5
14 years ago
Xianyi Zhang
fe613de8e1
refs #69 . Auto-detect Intel Core i6/i7 (Sandy Bridge) CPU with Nehalem assembly kernels.
14 years ago
Xianyi Zhang
142e99d4e9
Merge branch 'master' into develop
14 years ago
Xianyi Zhang
0d3647c395
Merge pull request #76 from StefanKarpinski/patch-1
Fix #68 : don't require SystemStubs on OS X. SystemStubs does not exist on Lion.
14 years ago
Stefan Karpinski
0d76196a09
Fix #68 : don't require SystemStubs on OS X.
14 years ago
traz
a4292976e9
Adding detection of complex situations in symm.c, otherwise the buffer address of sb will overlap the end of sa.
14 years ago
Xianyi Zhang
d5a6d789e6
Fixed a typo in Makefile.
14 years ago
Xianyi Zhang
875dde437d
Merge branch 'lapack_3.4.0' into develop
14 years ago
Xianyi Zhang
5be22ca80d
Refs #72 . Upgraded LAPACK to 3.4.0 version.
14 years ago
traz
2d78fb05c8
Add conjugate condition to gemv.
14 years ago
traz
a32e56500a
Fix the compute error of gemv when incx and incy are negative numbers.
14 years ago
traz
c1e618ea2d
Add complete gemv function on Loongson3a platform.
14 years ago
traits
19f5b5c132
Fixed #66 the bug in zgemv kernel with transpose matrix on 64-bit MingW (Windows).
14 years ago
traits
c852ce3981
Ref #65 . Fixed 64-bit Windows calling convention bug in cdot and zdot.
According to 64-bit Windows calling convention, the return value is in %rax instead of %xmm0 in cdot kernel.
In zdot, the caller allocates a memory space for return value and sets this memory address to the first hidden parameter. Thus, the callee (zdot) should assign the result to this memory space and return the memory address in %rax.
14 years ago
Xianyi Zhang
ba31b19c00
Ref #62 . In OpenMP implementation, check the return value of omp_get_max_threads().
It makes sure the return value as same as blas_cpu_numbers which is an internal global variable to store the number of threads in OpenBLAS.
14 years ago
traits
66a3c6df4e
Ref #63 . Fixed generating DLL bug on ming-w64.
14 years ago
Xianyi Zhang
57658a8c14
ref #62 . Added the user friendly message with USE_OPENMP=1. The users should use OMP_NUM_THREADS.
When OpenBLAS is compiled with USE_OPENMP=1, it ignores OPENBLAS_NUM_THREADS and GOTO_NUM_THREADS flags.Therefore, you should use OMP_NUM_THREADS.
Without setting OMP_NUM_THREADS, a process will use maximal number of threads on a computing node. Thus, if there are 2 processes on the computing node, the thread will contend against other threads on CPU cores. As a result, the application will hang.
14 years ago
traz
9fe3049de6
Adding conditional compilation(#if defined(LOONGSON3A)) to avoid affecting the performance of other platforms.
14 years ago
traz
831858b883
Modify aligned address of sa and sb to improve the performance of multi-threads.
14 years ago
Xianyi
8de2ba67dd
Merge branch 'hotfix-0.1alpha2.4' into develop
14 years ago
Xianyi
fe7a932ab8
Merge branch 'hotfix-0.1alpha2.4'
14 years ago
Xianyi
1d31c79dc9
Prepared the document for 0.1 alpha 2.4 version.
14 years ago
Xianyi
d40e5621e9
Change the installation folder into /include and /lib.
14 years ago
Xianyi
bcc7956216
Refs #57 . Continue to fix absolute path issue about shared library on Mac OSX.
Used $(CURDIR) instead of pwd in generating shared library on Mac OSX.
Add more tips about this issue. Thank Dr Kane O'Donnell.
14 years ago
Xianyi
821cbb2995
Updated the document for 0.1 alpha 2.4.
14 years ago
Xianyi
74fa790354
Merge branch 'develop' into hotfix-0.1alpha2.4
14 years ago
Xianyi
756477bfe3
Output the installation tip after building complete.
14 years ago
Xianyi
864c68ffc5
Bump the version number.
14 years ago
Xianyi
68cae521df
Refs #57 . The bug about absolute path of shared library on Mac OSX.
OSX cann't use relative path in shared library. Thank Mr.Kane for this patch. The detail is in this link (https://github.com/xianyi/OpenBLAS/issues/57 ).
14 years ago
Xianyi
d0152ec8ca
Fixed #61 a building bug about setting TARGET and DYNAMIC_ARCH at the same time.
14 years ago
traz
e08cfaf9ca
Complete all the complex single-precision functions of level3, but the performance needs further improve.
14 years ago
traz
ee4bb8bd25
Add ctrmm part in cgemm_kernel_loongson3a_4x2_ps.S.
14 years ago