This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
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
refs
#55
. Changed DTB_ENTRIES to DTB_DEFAULT_ENTRIES in x86 gemv_n kernel codes.
tags/v0.1alpha2.3^2
traits
14 years ago
parent
90481ce742
commit
b1fe26c45a
4 changed files
with
6 additions
and
6 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
kernel/x86/gemv_n.S
+1
-1
kernel/x86/qgemv_n.S
+2
-2
kernel/x86/xgemv_n.S
+2
-2
kernel/x86/zgemv_n.S
+ 1
- 1
kernel/x86/gemv_n.S
View File
@@ -48,7 +48,7 @@
#endif
#ifndef P
#define P DTB_ENTRIES
#define P DTB_
DEFAULT_
ENTRIES
#endif
#define STACK 16
+ 1
- 1
kernel/x86/qgemv_n.S
View File
@@ -48,7 +48,7 @@
#endif
#ifndef P
#define P DTB_ENTRIES
#define P DTB_
DEFAULT_
ENTRIES
#endif
#define STACK 16
+ 2
- 2
kernel/x86/xgemv_n.S
View File
@@ -44,11 +44,11 @@
#endif
#if defined(PENTIUM4) || defined(ATHLON)
#define P (DTB_ENTRIES / 2)
#define P (DTB_
DEFAULT_
ENTRIES / 2)
#endif
#ifndef P
#define P DTB_ENTRIES
#define P DTB_
DEFAULT_
ENTRIES
#endif
#define STACK 16
+ 2
- 2
kernel/x86/zgemv_n.S
View File
@@ -44,11 +44,11 @@
#endif
#if defined(PENTIUM4) || defined(ATHLON)
#define P ((DTB_ENTRIES) >> 1)
#define P ((DTB_
DEFAULT_
ENTRIES) >> 1)
#endif
#ifndef P
#define P DTB_ENTRIES
#define P DTB_
DEFAULT_
ENTRIES
#endif
#define STACK 16
Write
Preview
Loading…
Cancel
Save