Skip to content
Snippets Groups Projects
Commit 83a2b449 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Add missing include when generatin jacobian_apply, but not jacobian

parent 995c53d6
No related branches found
No related tags found
No related merge requests found
......@@ -861,6 +861,7 @@ def generate_jacobian_kernels(form, original_form):
with global_context(form_type="jacobian_apply"):
for measure in set(i.integral_type() for i in jac_apply_form.integrals()):
with global_context(integral_type=measure):
from dune.perftool.pdelab.signatures import assembler_routine_name
with global_context(kernel=assembler_routine_name()):
kernel = [k for k in get_backend(interface="generate_kernels_per_integral")(jac_apply_form.integrals_by_type(measure))]
operator_kernels[(measure, 'jacobian_apply')] = kernel
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment