Skip to content

Commit c139b63

Browse files
authored
Merge pull request #5107 from jhgit/develop
fix signedness of pointer to integer type passed to blas_lock()
2 parents 5de5072 + 6cd9bbe commit c139b63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

driver/level3/level3_thread.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ static int gemm_driver(blas_arg_t *args, BLASLONG *range_m, BLASLONG
547547

548548
#ifdef USE_OPENMP
549549
static omp_lock_t level3_lock, critical_section_lock;
550-
static volatile BLASLONG init_lock = 0, omp_lock_initialized = 0,
550+
static volatile BLASULONG init_lock = 0, omp_lock_initialized = 0,
551551
parallel_section_left = MAX_PARALLEL_NUMBER;
552552

553553
// Lock initialization; Todo : Maybe this part can be moved to blas_init() in blas_server_omp.c

0 commit comments

Comments
 (0)