Browse Source

openblas: fix `BUFFERSIZE` value

tags/v0.3.28^2
Pol Dellaiera 1 year ago
parent
commit
1b52e3dcfa
No known key found for this signature in database GPG Key ID: D476DFE9C67467CA
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common_x86_64.h

+ 1
- 1
common_x86_64.h View File

@@ -253,7 +253,7 @@ static __inline unsigned int blas_quickdivide(unsigned int x, unsigned int y){
#ifndef BUFFERSIZE
#define BUFFER_SIZE (32 << 22)
#else
#define BUFFER_SIZE (32 << BUFFERSIZE)
#define BUFFER_SIZE (32UL << BUFFERSIZE)
#endif

#define SEEK_ADDRESS


Loading…
Cancel
Save