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

openblas: fix `BUFFERSIZE` value
This commit is contained in:
Martin Kroeker 2024-07-11 14:45:50 +02:00 committed by GitHub
commit 1d77647d1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

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