|
38 | 38 | ZonalMean2dStratosphereParameter, |
39 | 39 | ) |
40 | 40 | from e3sm_diags.run import runner |
41 | | -import timeit |
42 | 41 |
|
43 | 42 |
|
44 | 43 | class MachinePaths(TypedDict): |
@@ -67,7 +66,9 @@ def run_all_sets(): |
67 | 66 | "ANN", |
68 | 67 | "JJA", |
69 | 68 | ] # Default setting: seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] |
70 | | - param.results_dir = "qa/861-time-series-multiple" |
| 69 | + param.results_dir = ( |
| 70 | + "/global/cfs/cdirs/e3sm/www/cdat-migration-fy24/861-time-series-multiple" |
| 71 | + ) |
71 | 72 | param.multiprocessing = True |
72 | 73 | param.num_workers = 24 |
73 | 74 |
|
@@ -155,24 +156,24 @@ def run_all_sets(): |
155 | 156 |
|
156 | 157 | param.save_netcdf = True |
157 | 158 | runner.sets_to_run = [ |
158 | | - # "lat_lon", |
159 | | - # "zonal_mean_xy", |
160 | | - # "zonal_mean_2d", |
161 | | - # "zonal_mean_2d_stratosphere", |
162 | | - # "polar", |
163 | | - # "cosp_histogram", |
164 | | - # "meridional_mean_2d", |
165 | | - # "annual_cycle_zonal_mean", |
| 159 | + "lat_lon", |
| 160 | + "zonal_mean_xy", |
| 161 | + "zonal_mean_2d", |
| 162 | + "zonal_mean_2d_stratosphere", |
| 163 | + "polar", |
| 164 | + "cosp_histogram", |
| 165 | + "meridional_mean_2d", |
| 166 | + "annual_cycle_zonal_mean", |
166 | 167 | "enso_diags", |
167 | 168 | "qbo", |
168 | 169 | "area_mean_time_series", |
169 | | - # "diurnal_cycle", |
| 170 | + "diurnal_cycle", |
170 | 171 | "streamflow", |
171 | 172 | "arm_diags", |
172 | | - # "tc_analysis", |
173 | | - # "aerosol_aeronet", |
174 | | - # "aerosol_budget", |
175 | | - # "mp_partition", |
| 173 | + "tc_analysis", |
| 174 | + "aerosol_aeronet", |
| 175 | + "aerosol_budget", |
| 176 | + "mp_partition", |
176 | 177 | ] |
177 | 178 |
|
178 | 179 | runner.run_diags( |
@@ -282,8 +283,4 @@ def _get_test_data_dirs(machine: str) -> Tuple[str, str]: |
282 | 283 |
|
283 | 284 |
|
284 | 285 | if __name__ == "__main__": |
285 | | - start_time = timeit.default_timer() |
286 | 286 | run_all_sets() |
287 | | - end_time = timeit.default_timer() |
288 | | - elapsed_time = end_time - start_time |
289 | | - print(f"Elapsed time: {elapsed_time} seconds") |
0 commit comments