Skip to content

Commit 3fad848

Browse files
committed
fix reservations
1 parent d43b328 commit 3fad848

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

parts/hpc/hello_world/solution/job_cpu_multinode_rsv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#SBATCH --time=00:05:00
77
#SBATCH --nodes=4
88
#SBATCH --ntasks=16
9-
#SBATCH --reservation=julia_MIT_1
9+
#SBATCH --reservation=julia_sc24
1010

1111
# Load the latest Julia Module
1212
ml load julia

parts/hpc/hello_world/solution/job_cpu_singlenode_rsv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#SBATCH --time=00:05:00
77
#SBATCH --nodes=1
88
#SBATCH --ntasks=4
9-
#SBATCH --reservation=julia_MIT_1
9+
#SBATCH --reservation=julia_sc24
1010

1111
# Load the latest Julia Module
1212
ml load julia

parts/mpi/job_mpi_multinode.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ source ../../activate.sh
1919
# to configure MPI. If you tried to use `MPI.Init()` outside of an srun, then
2020
# the program will crash. Note also that you can't run an srun _insite_ of
2121
# another srun.
22-
srun julia -e 'do_save=false; include("diffusion_2d_mpi.jl");'
22+
srun julia -e 'do_save=true; include("diffusion_2d_mpi.jl");'

parts/mpi/solution/job_mpi_multinode.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ source ../../../activate.sh
2222
# to configure MPI. If you tried to use `MPI.Init()` outside of an srun, then
2323
# the program will crash. Note also that you can't run an srun _insite_ of
2424
# another srun.
25-
srun julia -e 'do_save=false; include("diffusion_2d_mpi.jl");'
25+
srun julia -e 'do_save=true; include("diffusion_2d_mpi.jl");'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
nprocs = 16, dims = (4, 4)
2-
Time = 1.3349e-02 s, T_eff = 7.07 GB/s
2+
Time = 1.3388e-02 s, T_eff = 7.05 GB/s

0 commit comments

Comments
 (0)