-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop' into feature-gromacs
- Loading branch information
Showing
7 changed files
with
100 additions
and
104 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
For each ``experiment`` (``benchmark`` x ``ProgrammingModel`` x ), | ||
Ramble sets up the following ``workspace`` directory structure | ||
to build and run the experiment:: | ||
|
||
experiments_root/ | ||
ramble/ | ||
spack/ | ||
<benchmark>/ | ||
<ProgrammingModel>/ | ||
<system>/ | ||
workspace/ | ||
configs/ | ||
(everything from source/configs/<system>) | ||
(everything from source/experiments/<benchmark>) | ||
experiments/ | ||
<benchmark>/ | ||
<problem>/ | ||
<benchmark>_<ProgrammingModel>_<problem> | ||
execute_experiment |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
============== | ||
Working with a set of experiments | ||
============== | ||
|
||
You may want to use the same experiments_root directory when setting up multiple experiments: | ||
|
||
* Benchpark only stores one copy of Spack/Ramble per experiments directory, | ||
and does not repeatedly download them when reusing the experiments directory. | ||
* Since each experiment in the experiments directory shares the Spack/Ramble instances, | ||
the edits/updates you make to Spack packages will apply to all experiments | ||
in your experiments directory. | ||
|
||
To use the same experiments directory when setting up multiple experiments, | ||
instruct benchpark to set them up in the same experiments_root:: | ||
|
||
benchpark setup benchmark1/ProgrammingModel1 system1 /output/path/to/experiments_root | ||
benchpark setup benchmark1/ProgrammingModel2 system2 /output/path/to/experiments_root | ||
benchpark setup benchmark2/ProgrammingModel2 system1 /output/path/to/experiments_root | ||
|
||
This will result in the following directory structure:: | ||
|
||
experiments_root/ | ||
ramble/ | ||
spack/ | ||
benchmark1/ | ||
ProgrammingModel1/ | ||
system1/ | ||
workspace/ | ||
ProgrammingModel2/ | ||
system2/ | ||
workspace/ | ||
benchmark2/ | ||
ProgrammingModel2/ | ||
system1/ | ||
workspace/ | ||
|
||
Note that there is a single clone of Ramble, and a single clone of Spack, | ||
which all of the ``experiments`` use. | ||
Each ``experiment`` (``benchmark/ProgrammingModel`` x ``system`` combination) | ||
has its own ``Ramble workspace``, where this specific ``experiment`` | ||
will be compiled and run. |
This file was deleted.
Oops, something went wrong.