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

[bugfix] Fix vectorization with modified quadrature tuple

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!
parent be5166d5
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