about summary refs log tree commit diff stats
path: root/archive/2024
diff options
context:
space:
mode:
authorRaphael Dichler <44930718+raphaeldichler@users.noreply.github.com>2025-05-11 20:09:02 +0200
committerGitHub <noreply@github.com>2025-05-11 20:09:02 +0200
commit6a4c54b0c2a348526138063efdb75b8bd775d17c (patch)
treea16da77e083970e5419c8d6d1ae08e4eb3837577 /archive/2024
parent0e2ecd8d9ea2df912ccfd9f4574639066615d612 (diff)
downloadresearch-work-archive-artifacts-6a4c54b0c2a348526138063efdb75b8bd775d17c.tar.gz
research-work-archive-artifacts-6a4c54b0c2a348526138063efdb75b8bd775d17c.zip
fix typo
Diffstat (limited to 'archive/2024')
-rw-r--r--archive/2024/winter/bsc_dichler/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/archive/2024/winter/bsc_dichler/README.md b/archive/2024/winter/bsc_dichler/README.md
index e9b1d9960..deb8718e3 100644
--- a/archive/2024/winter/bsc_dichler/README.md
+++ b/archive/2024/winter/bsc_dichler/README.md
@@ -28,7 +28,7 @@ From the root directory of the repo, run any benchmark with the following comman
   --experiment <experiment> \
   remote \
   --remote-user <ssh-user> \
-  --remote-host <ssh-host> \
+  --remote-host <ssh-host>
 ```
 
 If an SSH jump host is needed, use the following command:
@@ -55,8 +55,8 @@ 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.
 - 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 must perform 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 directory specified (`/results/my-experiment/`).
+  - 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 are processed.
 
 ## Adding Additional Experiments