Skip to content
Snippets Groups Projects
Commit bbffc6cb authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Add custom timeloop_creation_function for LatticeBoltzmannStep

parent ef7c7239
No related branches found
No related tags found
1 merge request!20Add custom timeloop_creation_function for LatticeBoltzmannStep
...@@ -22,7 +22,10 @@ class LatticeBoltzmannStep: ...@@ -22,7 +22,10 @@ class LatticeBoltzmannStep:
velocity_data_name=None, density_data_name=None, density_data_index=None, velocity_data_name=None, density_data_name=None, density_data_index=None,
compute_velocity_in_every_step=False, compute_density_in_every_step=False, compute_velocity_in_every_step=False, compute_density_in_every_step=False,
velocity_input_array_name=None, time_step_order='stream_collide', flag_interface=None, velocity_input_array_name=None, time_step_order='stream_collide', flag_interface=None,
alignment_if_vectorized=64, fixed_loop_sizes=True, fixed_relaxation_rates=True, **method_parameters): alignment_if_vectorized=64, fixed_loop_sizes=True, fixed_relaxation_rates=True,
timeloop_creation_function=TimeLoop, **method_parameters):
self._timeloop_creation_function = timeloop_creation_function
# --- Parameter normalization --- # --- Parameter normalization ---
if data_handling is not None: if data_handling is not None:
...@@ -243,7 +246,7 @@ class LatticeBoltzmannStep: ...@@ -243,7 +246,7 @@ class LatticeBoltzmannStep:
def get_time_loop(self): def get_time_loop(self):
self.pre_run() # make sure GPU arrays are allocated self.pre_run() # make sure GPU arrays are allocated
fixed_loop = TimeLoop(steps=2) fixed_loop = self._timeloop_creation_function(steps=2)
fixed_loop.add_pre_run_function(self.pre_run) fixed_loop.add_pre_run_function(self.pre_run)
fixed_loop.add_post_run_function(self.post_run) fixed_loop.add_post_run_function(self.post_run)
fixed_loop.add_single_step_function(self.time_step) fixed_loop.add_single_step_function(self.time_step)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment