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

Allow prescribing whether the temporary created by precompute() is local

parent 4d015527
No related branches found
No related tags found
No related merge requests found
...@@ -526,7 +526,8 @@ class InvocationReplacer(ExpandingIdentityMapper): ...@@ -526,7 +526,8 @@ class InvocationReplacer(ExpandingIdentityMapper):
def precompute(kernel, subst_use, sweep_inames=[], within=None, def precompute(kernel, subst_use, sweep_inames=[], within=None,
storage_axes=None, new_storage_axis_names=None, storage_axis_to_tag={}, storage_axes=None, new_storage_axis_names=None, storage_axis_to_tag={},
default_tag="l.auto", dtype=None, fetch_bounding_box=False): default_tag="l.auto", dtype=None, fetch_bounding_box=False,
temporary_is_local=None):
"""Precompute the expression described in the substitution rule determined by """Precompute the expression described in the substitution rule determined by
*subst_use* and store it in a temporary array. A precomputation needs two *subst_use* and store it in a temporary array. A precomputation needs two
things to operate, a list of *sweep_inames* (order irrelevant) and an things to operate, a list of *sweep_inames* (order irrelevant) and an
...@@ -886,13 +887,16 @@ def precompute(kernel, subst_use, sweep_inames=[], within=None, ...@@ -886,13 +887,16 @@ def precompute(kernel, subst_use, sweep_inames=[], within=None,
import loopy as lp import loopy as lp
if temporary_is_local is None:
temporary_is_local = lp.auto
new_temporary_variables = kernel.temporary_variables.copy() new_temporary_variables = kernel.temporary_variables.copy()
temp_var = lp.TemporaryVariable( temp_var = lp.TemporaryVariable(
name=target_var_name, name=target_var_name,
dtype=dtype, dtype=dtype,
base_indices=(0,)*len(non1_storage_shape), base_indices=(0,)*len(non1_storage_shape),
shape=tuple(non1_storage_shape), shape=tuple(non1_storage_shape),
is_local=lp.auto) is_local=temporary_is_local)
new_temporary_variables[target_var_name] = temp_var new_temporary_variables[target_var_name] = temp_var
......
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