Skip to content
Snippets Groups Projects
Commit a4741861 authored by René Heß's avatar René Heß
Browse files

Improve logging of vectorization strategy

parent 5c9f0ab8
No related branches found
No related tags found
No related merge requests found
...@@ -176,9 +176,9 @@ def decide_vectorization_strategy(): ...@@ -176,9 +176,9 @@ def decide_vectorization_strategy():
qp, sfdict = level1_optimal_vectorization_strategy(active_sumfacts, width) qp, sfdict = level1_optimal_vectorization_strategy(active_sumfacts, width)
set_quadrature_points(qp) set_quadrature_points(qp)
logger.debug("decide_vectorization_strategy: Decided for the following strategy:" +
logger.debug("decide_vectorization_strategy: Decided for the following strategy:" "\n " +
"\n".join(stringify_vectorization_strategy((qp, sfdict)))) "\n ".join(stringify_vectorization_strategy((qp, sfdict))))
# We map inactive sum factorization kernels to 0 # We map inactive sum factorization kernels to 0
sfdict = add_to_frozendict(sfdict, {sf: 0 for sf in inactive_sumfacts}) sfdict = add_to_frozendict(sfdict, {sf: 0 for sf in inactive_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