-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ivan Ilic
committed
Jan 14, 2023
1 parent
199f690
commit 8dd156a
Showing
3 changed files
with
27 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
# Run this script from within the directory that you want to install rmg-sort into. | ||
pip install matplotlib | ||
pip install pandas | ||
git clone https://github.com/hpides/rmg-sort.git | ||
cd rmg-sort |
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,15 @@ | ||
#!/bin/bash | ||
#SBATCH [email protected] | ||
#SBATCH --mail-type=BEGIN,END | ||
#SBATCH -A rabl | ||
#SBATCH --partition sorcery | ||
#SBATCH --nodelist dgxa100-01 | ||
#SBATCH --nodes=1 | ||
#SBATCH --ntasks-per-node=1 | ||
#SBATCH --cpus-per-task=128 | ||
#SBATCH --gpus=8 | ||
#SBATCH --mem=100G | ||
#SBATCH --time="1-12" | ||
|
||
./install.sh | ||
./run_all.sh |
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,6 @@ | ||
#!/bin/bash | ||
# Run this script from within the rmg-sort directory. | ||
git submodule update --init --recursive | ||
./build.sh | ||
python3 scripts/run_experiments.py build results | ||
python3 scripts/plot_experiments.py results |