Fixed the overflowing bug in single thread cholesky factorization.
This commit is contained in:
parent
5155e3f509
commit
4c2123c334
|
@ -66,7 +66,9 @@ static FLOAT dm1 = -1.;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define GEMM_PQ MAX(GEMM_P, GEMM_Q)
|
#define GEMM_PQ MAX(GEMM_P, GEMM_Q)
|
||||||
#define REAL_GEMM_R (GEMM_R - GEMM_PQ)
|
|
||||||
|
//leave some space for GEMM_ALIGN in sb2
|
||||||
|
#define REAL_GEMM_R (GEMM_R - 2*GEMM_PQ)
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
#define SHARED_ARRAY
|
#define SHARED_ARRAY
|
||||||
|
@ -220,7 +222,7 @@ blasint CNAME(blas_arg_t *args, BLASLONG *range_m, BLASLONG *range_n, FLOAT *sa,
|
||||||
sa,
|
sa,
|
||||||
sb2,
|
sb2,
|
||||||
a + (is + js * lda) * COMPSIZE, lda,
|
a + (is + js * lda) * COMPSIZE, lda,
|
||||||
- is + js);
|
is - js);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue