Supported building debug version.
This commit is contained in:
parent
afbe3c9791
commit
854137e0fd
|
@ -89,7 +89,13 @@ VERSION = 0.1
|
||||||
# UTEST_CHECK = 1
|
# UTEST_CHECK = 1
|
||||||
|
|
||||||
# Common Optimization Flag; -O2 is enough.
|
# Common Optimization Flag; -O2 is enough.
|
||||||
|
# DEBUG = 1
|
||||||
|
|
||||||
|
ifeq ($(DEBUG), 1)
|
||||||
|
COMMON_OPT += -g
|
||||||
|
else
|
||||||
COMMON_OPT += -O2
|
COMMON_OPT += -O2
|
||||||
|
endif
|
||||||
|
|
||||||
# Profiling flags
|
# Profiling flags
|
||||||
COMMON_PROF = -pg
|
COMMON_PROF = -pg
|
||||||
|
|
5
README
5
README
|
@ -17,6 +17,9 @@ examples:
|
||||||
On X86 box, compile this library for loongson3a CPU.
|
On X86 box, compile this library for loongson3a CPU.
|
||||||
make BINARY=64 CC=mips64el-unknown-linux-gnu-gcc FC=mips64el-unknown-linux-gnu-gfortran HOSTCC=gcc TARGET=LOONGSON3A
|
make BINARY=64 CC=mips64el-unknown-linux-gnu-gcc FC=mips64el-unknown-linux-gnu-gfortran HOSTCC=gcc TARGET=LOONGSON3A
|
||||||
|
|
||||||
|
3)Debug version
|
||||||
|
make DEBUG=1
|
||||||
|
|
||||||
3.Support CPU & OS
|
3.Support CPU & OS
|
||||||
Please read GotoBLAS_01Readme.txt
|
Please read GotoBLAS_01Readme.txt
|
||||||
|
|
||||||
|
@ -39,7 +42,7 @@ OPENBLAS_NUM_THREAD is prior to OMP_NUM_THREADS.
|
||||||
Please add a issue in https://github.com/xianyi/OpenBLAS/issues
|
Please add a issue in https://github.com/xianyi/OpenBLAS/issues
|
||||||
|
|
||||||
6.To-Do List:
|
6.To-Do List:
|
||||||
Optimize on ICT Loongson 3A CPU
|
Optimization on ICT Loongson 3A CPU
|
||||||
|
|
||||||
7.Contact
|
7.Contact
|
||||||
OpenBLAS users mailing list: http://list.rdcps.ac.cn/mailman/listinfo/openblas
|
OpenBLAS users mailing list: http://list.rdcps.ac.cn/mailman/listinfo/openblas
|
||||||
|
|
Loading…
Reference in New Issue