Browse Source

Make BUFFER_SIZE configurable

tags/v0.3.9
Martin Kroeker GitHub 6 years ago
parent
commit
c353d8b106
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      common_x86_64.h

+ 4
- 0
common_x86_64.h View File

@@ -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…
Cancel
Save