-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Copy input files to RAM before running the provers
This ensures that we don't benchmark the time it takes to load the problem from disk, and helps minimise noise in situations of high disk contention, and other noise from the filesystem cache. We are still limited by the RAM bandwidth but… what can you do. This is only effective on Unix (more precisely, on Unix systems where `/dev/shm` is actually in RAM); on Windows the default temporary directory will be used. To enable the same behavior on Windows, pass a RAM disk as `--ramdisk` argument. To disable the behavior on Linux, you can pass a directory that is not in RAM to the `--ramdisk` argument. The files will still be copied.
- Loading branch information
1 parent
da36fbf
commit edc1f99
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters