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
Refs
#154
. Fixed the build bug of dgemv_t on MinW64.
tags/v0.2.5^2
Zhang Xianyi
13 years ago
parent
2345bdec68
commit
cea1a885b5
1 changed files
with
11 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+11
-0
kernel/x86_64/dgemv_t.S
+ 11
- 0
kernel/x86_64/dgemv_t.S
View File
@@ -74,6 +74,11 @@
#define STACK_Y 72 + STACKSIZE(%rsp)
#define STACK_INCY 80 + STACKSIZE(%rsp)
#define STACK_BUFFER 88 + STACKSIZE(%rsp)
//Temp variables for M,N,A,LDA
#define MMM 224(%rsp)
#define NN 232(%rsp)
#define AA 240(%rsp)
#define LDAX 248(%rsp)
#endif
@@ -134,6 +139,12 @@
movq OLD_A, A
movq OLD_LDA, LDA
movq OLD_X, X
movq M, MMM
movq N, NN
movq A, AA
movq LDA, LDAX
#else
movq OLD_M, MMM
movq OLD_N, NN
Write
Preview
Loading…
Cancel
Save