From 9a1800e81d1db34c7ec4c5d9fcafb821f3fe7001 Mon Sep 17 00:00:00 2001 From: anurag Date: Wed, 27 May 2026 16:12:12 -0600 Subject: [PATCH] don't pass device arg Signed-off-by: anurag --- src/mldebug/input_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mldebug/input_parser.py b/src/mldebug/input_parser.py index f4ccc21..7636602 100644 --- a/src/mldebug/input_parser.py +++ b/src/mldebug/input_parser.py @@ -334,7 +334,7 @@ def check_hw_context(args) -> tuple[int, int]: use_shell = is_windows() # Build xrt-smi command, adding device argument for telluride - device_arg = "-d 0000:00:00.0" if device == AIE_DEV_TEL else "-d" + device_arg = "-d 0000:00:00.0" if device == AIE_DEV_TEL else "" cmd = f"xrt-smi examine -r aie-partitions {device_arg} -f JSON -o {filename} --force".split() ctx, pid = (0, 0) try: