diff options
author | 2019-09-03 13:33:13 -0400 | |
---|---|---|
committer | 2019-09-03 13:33:13 -0400 | |
commit | 5af16db0292673de1aace68a4cf29810e11f6701 (patch) | |
tree | e4e464aa8f525b6ce54092456f674b85db13693a /Tools/performance_tests/functions_perftest.py | |
parent | 8961f18fd2f3c8322d3b51675f1bf1175de5556a (diff) | |
download | WarpX-5af16db0292673de1aace68a4cf29810e11f6701.tar.gz WarpX-5af16db0292673de1aace68a4cf29810e11f6701.tar.zst WarpX-5af16db0292673de1aace68a4cf29810e11f6701.zip |
pass blocking factor into run command
Diffstat (limited to 'Tools/performance_tests/functions_perftest.py')
-rw-r--r-- | Tools/performance_tests/functions_perftest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/performance_tests/functions_perftest.py b/Tools/performance_tests/functions_perftest.py index d002ec70d..ed6bc1969 100644 --- a/Tools/performance_tests/functions_perftest.py +++ b/Tools/performance_tests/functions_perftest.py @@ -8,7 +8,8 @@ import git # Each instance of this class contains information for a single test. class test_element(): def __init__(self, input_file=None, n_node=None, n_mpi_per_node=None, - n_omp=None, n_cell=None, n_step=None): + n_omp=None, n_cell=None, n_step=None, max_grid_size=None, + blocking_factor=None): self.input_file = input_file self.n_node = n_node self.n_mpi_per_node = n_mpi_per_node |