Skip to content
Snippets Groups Projects
Commit d7419675 authored by Markus Holzer's avatar Markus Holzer
Browse files

Merge branch 'boundary-kernel-creation-args' into 'master'

Allow kernel_creation_args in create_lattice_boltzmann_boundary_kernel

See merge request !43
parents 13f670d1 4c4c98eb
1 merge request!43Allow kernel_creation_args in create_lattice_boltzmann_boundary_kernel
Pipeline #27615 failed with stages
in 22 minutes and 32 seconds
...@@ -97,11 +97,11 @@ class LbmWeightInfo(CustomCodeNode): ...@@ -97,11 +97,11 @@ class LbmWeightInfo(CustomCodeNode):
def create_lattice_boltzmann_boundary_kernel(pdf_field, index_field, lb_method, boundary_functor, def create_lattice_boltzmann_boundary_kernel(pdf_field, index_field, lb_method, boundary_functor,
target='cpu', openmp=True): target='cpu', openmp=True, **kernel_creation_args):
elements = [BoundaryOffsetInfo(lb_method.stencil), LbmWeightInfo(lb_method)] elements = [BoundaryOffsetInfo(lb_method.stencil), LbmWeightInfo(lb_method)]
index_arr_dtype = index_field.dtype.numpy_dtype index_arr_dtype = index_field.dtype.numpy_dtype
dir_symbol = TypedSymbol("dir", index_arr_dtype.fields['dir'][0]) dir_symbol = TypedSymbol("dir", index_arr_dtype.fields['dir'][0])
elements += [Assignment(dir_symbol, index_field[0]('dir'))] elements += [Assignment(dir_symbol, index_field[0]('dir'))]
elements += boundary_functor(pdf_field=pdf_field, direction_symbol=dir_symbol, elements += boundary_functor(pdf_field=pdf_field, direction_symbol=dir_symbol,
lb_method=lb_method, index_field=index_field) lb_method=lb_method, index_field=index_field)
return create_indexed_kernel(elements, [index_field], target=target, cpu_openmp=openmp) return create_indexed_kernel(elements, [index_field], target=target, cpu_openmp=openmp, **kernel_creation_args)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment