Browse Source

fix function typecast

tags/v0.3.20
Martin Kroeker GitHub 4 years ago
parent
commit
c49d46f25f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lapack/getrf/getrf_parallel.c

+ 1
- 1
lapack/getrf/getrf_parallel.c View File

@@ -662,7 +662,7 @@ blasint CNAME(blas_arg_t *args, BLASLONG *range_m, BLASLONG *range_n, FLOAT *sa,

blas_level1_thread(mode, bk, is + bk + offset + 1, mn + offset, (void *)dummyalpha,
a + (- offset + is * lda) * COMPSIZE, lda, NULL, 0,
ipiv, 1, (void *)LASWP_PLUS, args -> nthreads);
ipiv, 1, (int (*)(void))LASWP_PLUS, args -> nthreads);

is += bk;
}


Loading…
Cancel
Save