Browse Source

Merge pull request #5107 from jhgit/develop

fix signedness of pointer to integer type passed to blas_lock()
tags/v0.3.30
Martin Kroeker GitHub 1 year ago
parent
commit
c139b63342
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      driver/level3/level3_thread.c

+ 1
- 1
driver/level3/level3_thread.c View File

@@ -547,7 +547,7 @@ static int gemm_driver(blas_arg_t *args, BLASLONG *range_m, BLASLONG

#ifdef USE_OPENMP
static omp_lock_t level3_lock, critical_section_lock;
static volatile BLASLONG init_lock = 0, omp_lock_initialized = 0,
static volatile BLASULONG init_lock = 0, omp_lock_initialized = 0,
parallel_section_left = MAX_PARALLEL_NUMBER;

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


Loading…
Cancel
Save