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
#47
. Fixed the seting parameter bug on Loongson 3A single thread version.
tags/v0.1.0^2
Xianyi Zhang
14 years ago
parent
3c856c0c1a
commit
16fc083322
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
driver/others/parameter.c
+ 4
- 0
driver/others/parameter.c
View File
@@ -684,13 +684,17 @@ void blas_set_parameter(void){
#if defined(ARCH_MIPS64)
void blas_set_parameter(void){
#if defined(LOONGSON3A)
#ifdef SMP
if(blas_num_threads == 1){
#endif
//single thread
dgemm_r = 1000;
#ifdef SMP
}else{
//multi thread
dgemm_r = 300;
}
#endif
#endif
}
#endif
Write
Preview
Loading…
Cancel
Save