We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66432ec commit c7d0a54Copy full SHA for c7d0a54
pytensor/printing.py
@@ -297,10 +297,14 @@ def debugprint(
297
):
298
if hasattr(var.owner, "op"):
299
if (
300
- isinstance(var.owner.op, HasInnerGraph)
301
- or hasattr(var.owner.op, "scalar_op")
302
- and isinstance(var.owner.op.scalar_op, HasInnerGraph)
303
- ) and not inner_depth and var not in inner_graph_vars:
+ (
+ isinstance(var.owner.op, HasInnerGraph)
+ or hasattr(var.owner.op, "scalar_op")
+ and isinstance(var.owner.op.scalar_op, HasInnerGraph)
304
+ )
305
+ and not inner_depth
306
+ and var not in inner_graph_vars
307
+ ):
308
inner_graph_vars.append(var)
309
if print_op_info:
310
op_information.update(op_debug_information(var.owner.op, var.owner))
0 commit comments