Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions post/g5fcst_stats.pl
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,11 @@ sub submit_calcjob {
$ntspn = 42;
$qos = "#SBATCH --qos=dastest"; # wired for now since only way to use CAS
$partition = "#SBATCH --partition=preops"; # wired for now since only way to use CAS
} elsif ( $npn == 128 ) {
$mynodes = "mil";
$ntspn = 42;
$qos = "#SBATCH --qos=dastest"; # wired for now since only way to use MIL
$partition = "#SBATCH --partition=preops"; # wired for now since only way to use MIL
} else {
$mynodes = "hasw";
$ntspn = 24;
Expand Down
6 changes: 6 additions & 0 deletions post/time_ave.F
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,9 @@ program time_ave
quadratics = quadtmp
endif
deallocate (quadtmp)
if (rc/=0) then ! this should not be needed but it is
tend=.true.
endif
enddo
nquad = m

Expand Down Expand Up @@ -325,6 +328,9 @@ program time_ave
aliases = aliastmp
endif
deallocate (aliastmp)
if (rc/=0) then ! this should not be needed but it is
tend=.true.
endif
enddo
nalias = m
endif
Expand Down
Loading