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
Fix compilation when MAX_STACK_ALLOC is not set
Close
#722
tags/v0.2.16.rc1
Jerome Robert
10 years ago
parent
2c7143459f
commit
f9890a6452
1 changed files
with
3 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-2
interface/gemv.c
+ 3
- 2
interface/gemv.c
View File
@@ -270,10 +270,11 @@ void CNAME(enum CBLAS_ORDER order,
}
#endif
// stack overflow check
assert(stack_check==3.14159265358979323846);
#ifdef MAX_STACK_ALLOC
// stack overflow check
assert(stack_check==3.14159265358979323846);
if(!stack_alloc_size){
blas_memory_free(buffer);
}
Write
Preview
Loading…
Cancel
Save