Input File Dependencies
The feelpp.benchmarking framework allows you to specify input file dependencies in the Benchmark Specification file. This is notably useful to impose validation checks on the input files before running the benchmark.
Additionally, this field can be used to handle data transfer between different disks.
For example, most HPC clusters have Large Capacity disks and High Performance disks. A common problem is that the application’s performance can be bottlenecked by the disk’s read/write speed if the input files are stored on the Large Capacity disk. In this case, you can use the input_file_dependencies
field to copy the input files to the High Performance disk before running the benchmark, and delete them after the benchmark is completed so that the High Performance disk does not become cluttered.
1. How to specify file dependencies
The input_file_dependencies
field is a dictionary containing a custom name as the key and an absolute or relative path to the file as the value.
However, this field is highly dependent on a special field on the Machine Specification file: input_user_dir
.
-
If this field is not specified and the filepaths are relative, they are relative to
machine.input_dataset_base_dir
. -
If this field is specified, the filepaths should be relative to
machine.input_user_dir
, and they will be copied frommachine.input_user_dir
tomachine.input_dataset_base_dir
keeping the same directory structure.
The existance of all file dependencies will be verified. |
Parameters can be used in the input_file_dependencies field for refactoring.
|