We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f9616f commit 37709acCopy full SHA for 37709ac
arraycontext/impl/pytato/utils.py
@@ -58,8 +58,9 @@ def map_data_wrapper(self, expr: DataWrapper) -> Array:
58
f"{expr.name} => Illegal.")
59
self.seen_inputs.add(expr.name)
60
61
- # Normalizing names so that we more arrays can have the normalized DAG.
62
- name = self.vng("_actx_dw")
+ # Normalizing names so that more arrays can have the same normalized DAG.
+ from pytato.codegen import _generate_name_for_temp
63
+ name = _generate_name_for_temp(expr, self.vng, "_actx_dw")
64
self.bound_arguments[name] = expr.data
65
return make_placeholder(
66
name=name,
0 commit comments