fix couple of dead assignment warnings
This commit is contained in:
parent
bfc2a88594
commit
47deec2c1a
|
@ -218,9 +218,9 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
|
|||
buffer = (FLOAT *)blas_memory_alloc(1);
|
||||
|
||||
#ifdef SMP
|
||||
nthreads = num_cpu_avail(2);
|
||||
/* nthreads = num_cpu_avail(2);
|
||||
|
||||
/*FIXME trmv_thread was found to be broken, see issue 1332 */
|
||||
FIXME trmv_thread was found to be broken, see issue 1332 */
|
||||
nthreads = 1;
|
||||
|
||||
if (nthreads == 1) {
|
||||
|
|
|
@ -113,8 +113,8 @@ int CNAME(BLASLONG m, BLASLONG n, FLOAT *a, BLASLONG lda, BLASLONG posX, BLASLON
|
|||
#else
|
||||
data01 = *(ao1 + 0);
|
||||
data02 = *(ao1 + 1);
|
||||
data03 = *(ao1 + 2);
|
||||
data04 = *(ao1 + 3);
|
||||
/* data03 = *(ao1 + 2);
|
||||
data04 = *(ao1 + 3); */
|
||||
data05 = *(ao2 + 0);
|
||||
data06 = *(ao2 + 1);
|
||||
data07 = *(ao2 + 2);
|
||||
|
|
Loading…
Reference in New Issue