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
Fix a buffer overflow with MAX_STACK_ALLOC size in dgemv_t
Refs
#478
,
#482
, 9798481,
fd9fd42
tags/v0.2.15^2
Jerome Robert
10 years ago
parent
fb02cb0a41
commit
a4c96eca67
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
kernel/x86_64/dgemv_t_4.c
+ 1
- 1
kernel/x86_64/dgemv_t_4.c
View File
@@ -293,7 +293,7 @@ int CNAME(BLASLONG m, BLASLONG n, BLASLONG dummy1, FLOAT alpha, FLOAT *a, BLASLO
if ( n < 1 ) return(0);
xbuffer = buffer;
ytemp = buffer + NBMAX;
ytemp = buffer +
(m <
NBMAX
? m : NBMAX)
;
n0 = n / NBMAX;
n1 = (n % NBMAX) >> 2 ;
Write
Preview
Loading…
Cancel
Save