Browse Source

Merge pull request #4769 from drupol/fix-buffersize-value

openblas: fix `BUFFERSIZE` value
tags/v0.3.28^2
Martin Kroeker GitHub 1 year ago
parent
commit
1d77647d1b
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
      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