Refs #47. Fixed the seting parameter bug on Loongson 3A single thread version.
This commit is contained in:
parent
3c856c0c1a
commit
16fc083322
|
@ -684,13 +684,17 @@ void blas_set_parameter(void){
|
||||||
#if defined(ARCH_MIPS64)
|
#if defined(ARCH_MIPS64)
|
||||||
void blas_set_parameter(void){
|
void blas_set_parameter(void){
|
||||||
#if defined(LOONGSON3A)
|
#if defined(LOONGSON3A)
|
||||||
|
#ifdef SMP
|
||||||
if(blas_num_threads == 1){
|
if(blas_num_threads == 1){
|
||||||
|
#endif
|
||||||
//single thread
|
//single thread
|
||||||
dgemm_r = 1000;
|
dgemm_r = 1000;
|
||||||
|
#ifdef SMP
|
||||||
}else{
|
}else{
|
||||||
//multi thread
|
//multi thread
|
||||||
dgemm_r = 300;
|
dgemm_r = 300;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue