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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
common_x86_64.h
|
|
|
@@ -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 |
|
|
|
|