MPAS-JEDI
SpawnAnalyzeStats.py
Go to the documentation of this file.
1 #!/usr/bin/env python3
2 
3 from SpawnAnalyzeStatsArgs import args
4 import AnalyzeStats as mainScript
5 from Analyses import anWorkingDir
6 import argparse
7 import config as conf
8 from predefined_configs import outerIter
9 from copy import deepcopy
10 import JobScript as js
11 import os
12 from pathlib import Path
13 import re
14 import textwrap
15 
16 jobenv = 'csh'
17 jobbody = ['''
18 date
19 
20 #
21 # set environment:
22 # ================
23 module load python/3.7.5
24 source /glade/u/apps/ch/opt/usr/bin/npl/ncar_pylib.csh
25 
26 setenv pySourceDir PYSOURCE
27 
28 set mainScript = '''+mainScript.__name__+'''
29 
30 #
31 # link dependencies:
32 # ==================
33 set pyDepends = ( \\
34  ${mainScript} \\''']
35 for dep in mainScript.depends_on:
36  jobbody += [' '+dep+' \\']
37 jobbody += [''')
38 
39 foreach pySource ($pyDepends)
40  ln -sf ${pySourceDir}/${pySource}.py ./
41 end
42 
43 #
44 # make plots:
45 # ===========
46 python ${mainScript}.py -n NPWORK -r NPREAD -d DIAGSPACE -app JEDIAPP -nout NOUTER >& an.log
47 grep 'Finished main() successfully' an.log
48 if ( $status != 0 ) then
49  touch ./FAIL
50  exit 1
51 endif
52 
53 rm ./*.py
54 
55 date
56 
57 exit''']
58 
59 def main():
60  '''
61  Main function that sequentially
62  () collates command-line agruments (SpawnAnalyzeStatsArgs) and static
63  configuration module (config)
64  () loops over selected DiagSpaces, and for each
65  - spawns a job that executes AnalyzeStats on multiple processors
66  '''
67  DiagSpaceConfig = deepcopy(conf.DiagSpaceConfig)
68  for key in sorted(DiagSpaceConfig):
69  if not DiagSpaceConfig[key]['process']: del DiagSpaceConfig[key]
70 
71  ## process DiagSpace command-line selection
72  selectDiagSpaces = None
73  if args.diagSpaces:
74  selectDiagSpaces = str(args.diagSpaces).split(',')
75 
76  ## remove DiagSpaces that are not selected
77  for key in sorted(DiagSpaceConfig):
78  if selectDiagSpaces is not None:
79  match = False
80  for space in selectDiagSpaces:
81  if space in key: match = True
82  if not match: del DiagSpaceConfig[key]
83 
84  ## set python source directory
85  if args.scriptdir:
86  ## from command-line argument, if provided
87  scriptDir = Path(args.scriptdir)
88  else:
89  ## otherwise, use current directory
90  scriptDir = Path(os.getcwd())
91 
92  jobConf = {}
93 
94  ## get job configuration command-line arguments
95  if args.account: jobConf['account'] = args.account
96  if args.queue: jobConf['queue'] = args.queue
97  if args.memory: jobConf['memory'] = args.memory
98 
99  jobConf['env'] = jobenv
100 
101  ## submit a job for each selected DiagSpace
102  for DiagSpace, dsConf in DiagSpaceConfig.items():
103  myJobConf = deepcopy(jobConf)
104 
105  anGroup = dsConf['anGrp']
106  grpAtt = conf.anGroupConfig[anGroup]
107  npwork = grpAtt['npwork']
108  npread = grpAtt['npread']
109  myJobConf['nppernode'] = max(npwork, npread)
110  myJobConf['walltime'] = grpAtt['analyze_walltime']
111 
112  myJobConf['name'] = 'AnStat_'+DiagSpace
113  myJobConf['path'] = './'+anWorkingDir(DiagSpace)
114 
115  myJobConf['script'] = []
116  substitutions = {
117  'DIAGSPACE': DiagSpace,
118 # 'ANALYSISGROUP': anGroup,
119  'PYSOURCE': str(scriptDir),
120  'NPWORK': str(npwork),
121  'NPREAD': str(npread),
122  'JEDIAPP': args.jediAppName,
123  'NOUTER': str(args.nOuterIter),
124  }
125  for line in jobbody:
126  newline = line
127  for key, val in substitutions.items():
128  newline = re.sub(key, val, newline)
129  myJobConf['script'] += [newline+'\n']
130 
131  job = js.JobScriptFactory(myJobConf)
132  job.create()
133  job.submit()
134 
135 if __name__ == '__main__': main()
136 
def anWorkingDir(DiagSpace)
Definition: Analyses.py:34