You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument('-p', '--profile', action='store_true', help='run under cProfile to gather profiling statistics, and postprocess them if job completes')
75
+
parser.add_argument('-P', '--postprocess', action='store_true', help='postprocess profiling statistics from previous [failed] run; does not run the simulation')
76
+
74
77
args=parser.parse_args()
75
78
76
79
inputFile=os.path.abspath(args.input[0])
80
+
81
+
ifargs.postprocess:
82
+
print"Postprocessing the profiler statistics (will be appended to thermo.log)"
0 commit comments