You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to run max-temp from scratch and I will gather all the potentially confusing things that I find here so that we can fix them :) I am writing them as they come so the writing is not very clear, let me know if something doesn't make sense
Before "running benchmarks" section, we need to say a few things about the directory structure, e.g., "Each directory contains a different benchmark suite, more details about each benchmark suite cna be found in the separate READMEs in the separate directories"
Why do we need to source the script whole_shebang and can't we just execute it, e.g., ./whole_shebang.sh. We might need to chmod +x ./whole_shebang.sh first.
The name whole shebang does not give a lot of info about what this is supposed to do haha, can we change it to something like, run_bench/run_suite/etc?
--flags should not be mentioned in the main readme, it should be possible to call the main run script of its directory without any flags and it should do something reasonable.
Let's call each directory a suite and not a type of benchmark
Installation: It really is downloading and not installation and I think it should just be git clone IMO (instead of wget).
For each individual suite we know roughly how long it takes to set up inputs so we can print it as a message in whole-shebang
./max-temp source whole_shebang.sh did not work. I managed to run the suite by doing cd max-temp; source whole_shebang.sh.
max-temp:
No need to show "Start"
"Setting up inputs" should be removed because it is misleading
There is no message that shows that we are running the experiment (and how much is it expected to take roughly)
Why is run.sh in inputs? I would expect all scripts to be at the top level of the suite (or in a scripts folder).
NOAA and atlas indexes are in different format! (see the sed in new-temp-analytics.sh)
data and outputs should be added to a gitignore file inside the max-temp directory since they are temporary directories.
If we interrupt the process while it runs it stays in the internal directory. Maybe we need to use ( cd inputs; ./inputs.sh ) instead of cding?
The text was updated successfully, but these errors were encountered:
I am trying to run max-temp from scratch and I will gather all the potentially confusing things that I find here so that we can fix them :) I am writing them as they come so the writing is not very clear, let me know if something doesn't make sense
source
the script whole_shebang and can't we just execute it, e.g.,./whole_shebang.sh
. We might need to chmod +x ./whole_shebang.sh first.--flags
should not be mentioned in the main readme, it should be possible to call the main run script of its directory without any flags and it should do something reasonable../max-temp source whole_shebang.sh
did not work. I managed to run the suite by doingcd max-temp; source whole_shebang.sh
.run.sh
in inputs? I would expect all scripts to be at the top level of the suite (or in a scripts folder).data
andoutputs
should be added to a gitignore file inside the max-temp directory since they are temporary directories.( cd inputs; ./inputs.sh )
instead of cding?The text was updated successfully, but these errors were encountered: