diff options
Diffstat (limited to 'Makefile.rule')
-rw-r--r-- | Makefile.rule | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/Makefile.rule b/Makefile.rule index 5bbabe37a..90ff80ef8 100644 --- a/Makefile.rule +++ b/Makefile.rule @@ -1,12 +1,12 @@ # -# Beginning of user configuration +# Beginning of user configuration # # This library's version -VERSION = 0.2.9 +VERSION = 0.2.10.rc1 # If you set the suffix, the library name will be libopenblas_$(LIBNAMESUFFIX).a -# and libopenblas_$(LIBNAMESUFFIX).so. Meanwhile, the soname in shared library +# and libopenblas_$(LIBNAMESUFFIX).so. Meanwhile, the soname in shared library # is libopenblas_$(LIBNAMESUFFIX).so.0. # LIBNAMESUFFIX = omp @@ -57,11 +57,11 @@ VERSION = 0.2.9 # If you don't need CBLAS interface, please comment it in. # NO_CBLAS = 1 -# If you only want CBLAS interface without installing Fortran compiler, +# If you only want CBLAS interface without installing Fortran compiler, # please comment it in. # ONLY_CBLAS = 1 -# If you don't need LAPACK, please comment it in. +# If you don't need LAPACK, please comment it in. # If you set NO_LAPACK=1, the library automatically sets NO_LAPACKE=1. # NO_LAPACK = 1 @@ -84,7 +84,7 @@ NO_WARMUP = 1 # If you want to disable CPU/Memory affinity on Linux. NO_AFFINITY = 1 -# Don't use AVX kernel on Sandy Bridge. It is compatible with old compilers +# Don't use AVX kernel on Sandy Bridge. It is compatible with old compilers # and OS. However, the performance is low. # NO_AVX = 1 @@ -112,8 +112,8 @@ NO_AFFINITY = 1 # If you need to synchronize FP CSR between threads (for x86/x86_64 only). # CONSISTENT_FPCSR = 1 -# If any gemm arguement m, n or k is less or equal this threshold, gemm will be execute -# with single thread. You can use this flag to avoid the overhead of multi-threading +# If any gemm arguement m, n or k is less or equal this threshold, gemm will be execute +# with single thread. You can use this flag to avoid the overhead of multi-threading # in small matrix sizes. The default value is 4. # GEMM_MULTITHREAD_THRESHOLD = 4 @@ -128,12 +128,13 @@ NO_AFFINITY = 1 # The installation directory. # PREFIX = /opt/OpenBLAS -# Common Optimization Flag; +# Common Optimization Flag; # The default -O2 is enough. # COMMON_OPT = -O2 # gfortran option for LAPACK -FCOMMON_OPT = -frecursive +# enable this flag only on 64bit Linux and if you need a thread safe lapack library +# FCOMMON_OPT = -frecursive # Profiling flags COMMON_PROF = -pg @@ -142,5 +143,5 @@ COMMON_PROF = -pg # DEBUG = 1 # -# End of user configuration +# End of user configuration # |