Skip to content
Snippets Groups Projects
Commit 78dc9221 authored by Andreas Klöckner's avatar Andreas Klöckner Committed by Kaushik Kulkarni
Browse files

Pass no_numpy option for pytato loopy generation

parent 4341b9d6
No related branches found
No related tags found
No related merge requests found
......@@ -225,8 +225,11 @@ class LazilyCompilingFunctionCaller:
rec_keyed_map_array_container(_as_dict_of_named_arrays,
outputs)
import loopy as lp
pytato_program = pt.generate_loopy(dict_of_named_arrays,
options={"return_dict": True},
options=lp.Options(
return_dict=True,
no_numpy=True),
cl_device=self.actx.queue.device)
assert isinstance(pytato_program, BoundPyOpenCLProgram)
......
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