From 866e43181c1a666a28ee1689dd999b94777b2d08 Mon Sep 17 00:00:00 2001 From: Will Feng Date: Wed, 29 Oct 2025 22:26:36 -0700 Subject: [PATCH] [Fix upcoming CI error] Set current node in inductor lowering --- helion/_compiler/inductor_lowering.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helion/_compiler/inductor_lowering.py b/helion/_compiler/inductor_lowering.py index bab24c1d4..001c0e78f 100644 --- a/helion/_compiler/inductor_lowering.py +++ b/helion/_compiler/inductor_lowering.py @@ -177,7 +177,7 @@ def convert_arg(arg: Node) -> TensorBox: prior_buffers = len(graph_lowering.buffers) input_names: list[str] = [] with inductor_config.patch(INDUCTOR_PATCH): - with node.meta["location"]: + with node.meta["location"], graph_lowering.set_current_node(node): try: result = graph_lowering.call_function( node.target, # pyright: ignore[reportArgumentType]