Skip to content

Commit a774051

Browse files
author
Anand Radhakrishnan
committed
fix post_process benchmark
1 parent e1d9044 commit a774051

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/frontier/submit-bench.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ sbatch <<EOT
3232
#SBATCH -A CFD154 # charge account
3333
#SBATCH -N 1 # Number of nodes required
3434
$sbatch_device_opts
35-
#SBATCH -t 03:59:00 # Duration of the job (Ex: 15 mins)
35+
#SBATCH -t 02:59:00 # Duration of the job (Ex: 15 mins)
3636
#SBATCH -o$job_slug.out # Combined output and error messages file
3737
#SBATCH -p extended # Extended partition for shorter queues
3838
#SBATCH -W # Do not exit until the submitted job terminates.

.github/workflows/phoenix/submit-bench.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ sbatch <<EOT
4242
#SBATCH --account=gts-sbryngelson3 # charge account
4343
#SBATCH -N1 # Number of nodes required
4444
$sbatch_device_opts
45-
#SBATCH -t 03:00:00 # Duration of the job (Ex: 15 mins)
45+
#SBATCH -t 02:00:00 # Duration of the job (Ex: 15 mins)
4646
#SBATCH -q embers # QOS Name
4747
#SBATCH -o$job_slug.out # Combined output and error messages file
4848
#SBATCH -W # Do not exit until the submitted job terminates.

src/post_process/m_data_input.f90

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -669,11 +669,11 @@ impure subroutine s_finalize_data_input_module
669669
deallocate (q_T_sf%sf)
670670
end if
671671

672-
deallocate (bc_type(1, -1)%sf, bc_type(1, 1)%sf)
672+
deallocate (bc_type(1, 1)%sf, bc_type(1, 2)%sf)
673673
if (n > 0) then
674-
deallocate (bc_type(2, -1)%sf, bc_type(2, 1)%sf)
674+
deallocate (bc_type(2, 1)%sf, bc_type(2, 2)%sf)
675675
if (p > 0) then
676-
deallocate (bc_type(3, -1)%sf, bc_type(3, 1)%sf)
676+
deallocate (bc_type(3, 1)%sf, bc_type(3, 2)%sf)
677677
end if
678678
end if
679679

0 commit comments

Comments
 (0)