diff options
| author | Raphael Dichler <44930718+raphaeldichler@users.noreply.github.com> | 2025-05-11 22:37:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-11 22:37:09 +0200 |
| commit | f377c693ecba3e434d3f4d967760dc303348becf (patch) | |
| tree | 3889b7e54e71555aec114bb481acd19983c37291 | |
| parent | c4baade9aafdc55e7196596a63bd03941061aedf (diff) | |
| download | research-work-archive-artifacts-f377c693ecba3e434d3f4d967760dc303348becf.tar.gz research-work-archive-artifacts-f377c693ecba3e434d3f4d967760dc303348becf.zip | |
Update README.md
| -rw-r--r-- | archive/2024/winter/bsc_dichler/README.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archive/2024/winter/bsc_dichler/README.md b/archive/2024/winter/bsc_dichler/README.md index ecf687b3f..17e816c42 100644 --- a/archive/2024/winter/bsc_dichler/README.md +++ b/archive/2024/winter/bsc_dichler/README.md @@ -45,18 +45,18 @@ If an SSH jump host is needed, use the following command: ### Additional Information -- By default, experiments are extracted from `/experiments/`. If your experiment is located in another directory, specify the base directory with `--base`. -- By default, all results of the experiments are placed into `/results`. To change this behavior, specify `--result`. +- By default, experiments are extracted from `./experiments`. If your experiment is located in another directory, specify the base directory with `--base`. +- By default, all results of the experiments are placed into `./results`. To change this behavior, specify `--result`. - When an experiment is executed, a context on the machine is created. This context is a temporary directory on the system. By default, after the execution of the benchmark, this directory is not cleaned up. To enable cleanup, specify `--cleanup`. ## Structure The structure of the experiment follows this pattern: -- Experiments are placed inside the `--base` directory (default: `/experiments/`) and are referred to by the name of the experiment. For example, if we have an experiment named `my-experiment`, a directory inside `/experiments/my-experiment/` must exist. +- Experiments are placed inside the `--base` directory (default: `./experiments`) and are referred to by the name of the experiment. For example, if we have an experiment named `my-experiment`, a directory inside `./experiments/my-experiment` must exist. - On execution of an experiment, the `--base` directory is synced to the context of the current run, then: - We run the Makefile inside this folder. This Makefile performs all steps required to run the experiment (like compiling and executing the actual experiment). - - The results produced by the experiment are placed into `/experiments/my-experiment/results/`. These results are then synced back to the results `--result` directory (default `/results/my-experiment/`). + - The results produced by the experiment are placed into `./experiments/my-experiment/results`. These results are then synced back to the results `--result` directory (default `./results/my-experiment`). - The results are processed. ## Adding Additional Experiments |