Browse Source

fix couple of dead assignment warnings

tags/v0.3.0
Andrew 8 years ago
parent
commit
47deec2c1a
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      interface/trmv.c
  2. +2
    -2
      kernel/generic/ztrmm_uncopy_2.c

+ 2
- 2
interface/trmv.c View File

@@ -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) {


+ 2
- 2
kernel/generic/ztrmm_uncopy_2.c View File

@@ -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…
Cancel
Save