Browse Source

Increase minimum disk size to be able to benchmark 64MiB transfers, not 1MiB only

Samuel Thibault 8 years ago
parent
commit
e92090780d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/disk.h

+ 1 - 1
src/core/disk.h

@@ -18,7 +18,7 @@
 #ifndef __DISK_H__
 #define __DISK_H__
 
-#define SIZE_DISK_MIN (1024*1024)
+#define SIZE_DISK_MIN (64*1024*1024)
 
 #define STARPU_DISK_ALL 1
 #define STARPU_DISK_NO_RECLAIM 2