8from .kernels
import create_abstract_solver_declarations
9from .kernels
import create_abstract_solver_definitions
10from .kernels
import create_solver_declarations
11from .kernels
import create_solver_definitions
12from .kernels
import create_rusanov_kernel_definitions
13from .kernels
import create_compute_Riemann_kernel_for_Rusanov_dsl
15from .kernels
import SolverVariant
16from .kernels
import KernelVariant
20from .kernels
import SolverVariant
25 name, patch_size, unknowns, auxiliary_variables, min_volume_h, max_volume_h, time_step_relaxation,
26 flux=PDETerms.User_Defined_Implementation,
27 ncp=PDETerms.None_Implementation,
28 eigenvalues=PDETerms.User_Defined_Implementation,
29 boundary_conditions=PDETerms.User_Defined_Implementation,
30 refinement_criterion=PDETerms.Empty_Implementation,
31 initial_conditions=PDETerms.User_Defined_Implementation,
32 source_term=PDETerms.None_Implementation,
33 plot_grid_properties=False,
34 pde_terms_without_state=False, overlap=1
36 super(GlobalAdaptiveTimeStepWithEnclaveTasking,self).
__init__(name,
44 pde_terms_without_state,
45 kernel_namespace=
"rusanov")
57 eigenvalues=eigenvalues,
58 boundary_conditions=boundary_conditions,
59 refinement_criterion=refinement_criterion,
60 initial_conditions=initial_conditions,
61 source_term=source_term)
67 boundary_conditions=None,refinement_criterion=None,initial_conditions=None,source_term=None,
68 memory_location = None,
69 use_split_loop = False,
70 additional_action_set_includes = "",
71 additional_user_includes = ""
74 If you pass in User_Defined, then the generator will create C++ stubs
75 that you have to befill manually. If you pass in None_Implementation, it
76 will create nop, i.e., no implementation or defaults. Any other string
77 is copied 1:1 into the implementation. If you pass in None, then the
78 set value so far won't be overwritten.
80 Please note that not all options are supported by all solvers.
82 This routine should be the very last invoked by the constructor.
89 create_rusanov_kernel_definitions()
95 compute_max_eigenvalue_of_next_time_step =
True,
96 solver_variant = SolverVariant.WithVirtualFunctions,
97 kernel_variant = KernelVariant.PatchWiseAoS
104 compute_max_eigenvalue_of_next_time_step =
True,
105 solver_variant = SolverVariant.Stateless,
106 kernel_variant = KernelVariant.PatchWiseAoS
113 compute_max_eigenvalue_of_next_time_step =
True,
114 solver_variant = SolverVariant.Stateless,
115 kernel_variant = KernelVariant.PatchWiseAoS
122 compute_max_eigenvalue_of_next_time_step =
True,
123 solver_variant = SolverVariant.Accelerator,
124 kernel_variant = KernelVariant.PatchWiseAoS
144 super(GlobalAdaptiveTimeStepWithEnclaveTasking,self).
set_implementation(boundary_conditions, refinement_criterion, initial_conditions, memory_location, use_split_loop, additional_action_set_includes, additional_user_includes)
154 return super(GlobalAdaptiveTimeStepWithEnclaveTasking, self).user_action_set_includes +
"""
155#include "kernels/rusanov.h"
Code snippet generator for fixed time stepping in the Runge-Kutta schemes.
Enclave tasking variant of the Finite Volume scheme.
_fused_compute_kernel_call_stateless_cpu
_optimise_patch_storage_for_global_time_stepping(self)
Make storage and loading more restrictive such that enclave data are not held in-between primary and ...
set_implementation(self, boundary_conditions, refinement_criterion, initial_conditions, memory_location, use_split_loop, additional_action_set_includes, additional_user_includes)
If you pass in User_Defined, then the generator will create C++ stubs that you have to befill manuall...
_fused_compute_kernel_call_stateless_gpu
_abstract_solver_user_declarations
_solver_user_declarations
_source_term_implementation
_compute_new_time_step_size
_start_time_step_implementation
_eigenvalues_implementation
_compute_kernel_call_stateless
_constructor_implementation
_finish_time_step_implementation
_abstract_solver_user_definitions
_start_time_step_implementation
_compute_kernel_call_stateless
_abstract_solver_user_definitions
create_data_structures(self)
This routine does not really add new data, but it heavily tailors when data are stored,...
_source_term_implementation
_solver_user_declarations
_fused_compute_kernel_call_stateless_cpu
_fused_compute_kernel_call_stateless_gpu
user_action_set_includes(self)
Add further includes to this property, if your action sets require some additional routines from othe...
__init__(self, name, patch_size, unknowns, auxiliary_variables, min_volume_h, max_volume_h, time_step_relaxation, flux=PDETerms.User_Defined_Implementation, ncp=PDETerms.None_Implementation, eigenvalues=PDETerms.User_Defined_Implementation, boundary_conditions=PDETerms.User_Defined_Implementation, refinement_criterion=PDETerms.Empty_Implementation, initial_conditions=PDETerms.User_Defined_Implementation, source_term=PDETerms.None_Implementation, plot_grid_properties=False, pde_terms_without_state=False, overlap=1)
Not so nice.
_abstract_solver_user_declarations
_eigenvalues_implementation
_compute_new_time_step_size
set_implementation(self, flux=None, ncp=None, eigenvalues=None, boundary_conditions=None, refinement_criterion=None, initial_conditions=None, source_term=None, memory_location=None, use_split_loop=False, additional_action_set_includes="", additional_user_includes="")
If you pass in User_Defined, then the generator will create C++ stubs that you have to befill manuall...
_constructor_implementation
_finish_time_step_implementation