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

[!307] [bugfix] Fix vectorization with modified quadrature tuple

Merge branch 'bugfix/fix-vectorization-with-modified-qp-tuple' into 'master'

ref:extensions/dune-codegen The unstructured stuff changed the implementation
of the parallel key to depend on the quadrature tuple. This means that we need
to make sure that the state of the quadrature tuple is correctly all the time!

See merge request [extensions/dune-codegen!307]

  [extensions/dune-codegen!307]: gitlab.dune-project.org/extensions/dune-codegen/merge_requests/307
parents be5166d5 66a5238d
No related branches found
No related tags found
No related merge requests found
...@@ -367,6 +367,8 @@ def level1_optimal_vectorization_strategy(sumfacts, width): ...@@ -367,6 +367,8 @@ def level1_optimal_vectorization_strategy(sumfacts, width):
def level2_optimal_vectorization_strategy(sumfacts, width, qp): def level2_optimal_vectorization_strategy(sumfacts, width, qp):
set_quadrature_points(qp)
# Find the sets of simultaneously realizable kernels # Find the sets of simultaneously realizable kernels
keys = frozenset(sf.parallel_key for sf in sumfacts) keys = frozenset(sf.parallel_key for sf in sumfacts)
......
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