From 97396112399aeb9f7ae2f85cfc47ea306ec852fb Mon Sep 17 00:00:00 2001 From: gabrpham_amdeng Date: Thu, 30 Oct 2025 14:28:16 -0500 Subject: [PATCH] Fixed Namspace has no attribute 'pcie' error in set command Signed-off-by: gabrpham_amdeng --- amdsmi_cli/amdsmi_commands.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/amdsmi_cli/amdsmi_commands.py b/amdsmi_cli/amdsmi_commands.py index c0e4f0d76e..bc8e3ae0f8 100644 --- a/amdsmi_cli/amdsmi_commands.py +++ b/amdsmi_cli/amdsmi_commands.py @@ -4587,7 +4587,6 @@ class AMDSMICommands(): args.power_cap is not None, args.soc_pstate is not None, args.xgmi_plpd is not None, - args.pcie is not None, args.clk_level is not None, args.clk_limit is not None, args.process_isolation is not None]): @@ -5112,7 +5111,7 @@ class AMDSMICommands(): gpu_args_enabled = False gpu_attributes = ["fan", "perf_level", "profile", "perf_determinism", "compute_partition", "memory_partition", "power_cap", "soc_pstate", "xgmi_plpd", - "process_isolation", "clk_limit", "clk_level", "pcie"] + "process_isolation", "clk_limit", "clk_level"] for attr in gpu_attributes: if hasattr(args, attr): if getattr(args, attr) is not None: