Skip to content
Snippets Groups Projects
Commit d74a8f64 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Fix options usage in test_slab_decomposition_does_not_double_execute

parent 220a5938
No related branches found
No related tags found
No related merge requests found
......@@ -1635,7 +1635,8 @@ def test_slab_decomposition_does_not_double_execute(ctx_factory):
a_knl = a.copy()
evt, _ = ref_knl(queue, a=a_ref)
evt, _ = knl(queue, a=a_knl, flags="write_cl")
knl = lp.set_options(knl, "write_cl")
evt, _ = knl(queue, a=a_knl)
assert (a_ref == a_knl).get().all()
1/0
......
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