This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
OSchip
/
OpenBLAS
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
66
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
changed default optimization from -O2 to -O3 for ARMV8
tags/v0.2.9.rc1
wernsaar
12 years ago
parent
fe5f46c330
commit
fd1d9fdb22
1 changed files
with
10 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+10
-2
Makefile.system
+ 10
- 2
Makefile.system
View File
@@ -840,11 +840,19 @@ endif
ifndef COMMON_OPT
ifeq ($(ARCH), arm)
COMMON_OPT = -O3
else
COMMON_OPT = -O2
endif
endif
ifndef COMMON_OPT
ifeq ($(ARCH), arm64)
COMMON_OPT = -O3
endif
endif
ifndef COMMON_OPT
COMMON_OPT = -O2
endif
override CFLAGS += $(COMMON_OPT) $(CCOMMON_OPT) -I$(TOPDIR)
override PFLAGS += $(COMMON_OPT) $(CCOMMON_OPT) -I$(TOPDIR) -DPROFILE $(COMMON_PROF)
Write
Preview
Loading…
Cancel
Save