Make BUFFER_SIZE configurable
This commit is contained in:
parent
579be3aa9d
commit
c353d8b106
|
@ -225,7 +225,11 @@ static __inline int blas_quickdivide(unsigned int x, unsigned int y){
|
|||
#endif
|
||||
#define HUGE_PAGESIZE ( 2 << 20)
|
||||
|
||||
#ifndef BUFFERSIZE
|
||||
#define BUFFER_SIZE (32 << 20)
|
||||
#else
|
||||
#define BUFFER_SIZE (32 << BUFFERSIZE)
|
||||
#endif
|
||||
|
||||
#define SEEK_ADDRESS
|
||||
|
||||
|
|
Loading…
Reference in New Issue