diff options
author | 2019-09-12 09:54:38 -0400 | |
---|---|---|
committer | 2019-09-12 09:54:38 -0400 | |
commit | b8d56b2f8f04f0210b2ec1404b2cc815f06c1324 (patch) | |
tree | a709ea2309d53d9d1e8b166c6ca91b5719b5e15d /Tools/performance_tests/run_automated.py | |
parent | 1e3b0b68a27c653ede0f1b06cf7765e6e7ce6824 (diff) | |
parent | 0bda5edfefde5773f5a773dcc8991649d33cc360 (diff) | |
download | WarpX-b8d56b2f8f04f0210b2ec1404b2cc815f06c1324.tar.gz WarpX-b8d56b2f8f04f0210b2ec1404b2cc815f06c1324.tar.zst WarpX-b8d56b2f8f04f0210b2ec1404b2cc815f06c1324.zip |
merge conflicts with dev
Diffstat (limited to 'Tools/performance_tests/run_automated.py')
-rw-r--r-- | Tools/performance_tests/run_automated.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Tools/performance_tests/run_automated.py b/Tools/performance_tests/run_automated.py index fe0aecfbe..fd771faac 100644 --- a/Tools/performance_tests/run_automated.py +++ b/Tools/performance_tests/run_automated.py @@ -50,7 +50,7 @@ parser.add_argument('--commit', parser.add_argument('--automated', dest='automated', action='store_true', - default=False, + default=False, help='Use to run the automated test list') parser.add_argument('--n_node_list', dest='n_node_list', @@ -68,7 +68,7 @@ parser.add_argument('--architecture', help='which architecture to cross-compile for NERSC machines') parser.add_argument('--mode', choices=['run', 'read', 'browse_output_files', 'write_csv'], - default='run', + default='run', help='whether to run perftests or read their perf output. run calls read') args = parser.parse_args() n_node_list_string = args.n_node_list.split(',') @@ -77,7 +77,7 @@ start_date = args.start_date compiler = args.compiler architecture = args.architecture -# Set behavior variables +# Set behavior variables ######################## write_csv = False browse_output_files = False @@ -142,7 +142,7 @@ if args.mode == 'run': config_command = get_config_command(compiler, architecture) # Create main result directory if does not exist if not os.path.exists(res_dir_base): - os.mkdir(res_dir_base) + os.mkdir(res_dir_base) # Recompile if requested # ---------------------- @@ -181,7 +181,7 @@ if args.mode == 'run': # Loop over the tests and run all simulations: # One batch job submitted per n_node. Several -# tests run within the same batch job. +# tests run within the same batch job. # -------------------------------------------- if args.mode == 'run': if os.path.exists( 'log_jobids_tmp.txt' ): @@ -256,7 +256,7 @@ for n_node in n_node_list: updated_df = df_base.append(df_newline, ignore_index=True) else: updated_df = df_newline - # Write dataframe to file perf_database_file + # Write dataframe to file perf_database_file # (overwrite if file exists) updated_df.to_hdf(perf_database_file, key='all_data', mode='w') @@ -264,7 +264,7 @@ for n_node in n_node_list: # csv file and copy this file to perf_logs repo # ------------------------------------------------- if write_csv: - # Extract small data from data frame and write them to + # Extract small data from data frame and write them to # First, generate csv files df = pd.read_hdf( perf_database_file ) # One large file |