From e7d48450a396c825b87770b7ee4f337a22d55308 Mon Sep 17 00:00:00 2001 From: Rando717 Date: Mon, 8 Sep 2025 21:10:20 +0200 Subject: [PATCH] Update zluda.py (removed previously added gfx90c) 'radeon graphics' check is not viable enough considering 'radeon (tm) graphics' also exists on Vega. Plus gfx1036 Raphael (Ryzen 7000) is called 'radeon (tm) graphics' , same with Granite Ridge (Ryzen 9000). --- comfy/customzluda/zluda.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/comfy/customzluda/zluda.py b/comfy/customzluda/zluda.py index 2d76dfa38..e313a9432 100644 --- a/comfy/customzluda/zluda.py +++ b/comfy/customzluda/zluda.py @@ -144,8 +144,6 @@ def gpu_name_to_gfx(gpu_name): return 'gfx900' # Vega 20 (gfx906, gfx907) elif any(x in gpu_name_lower for x in ['vega 11', 'vega 10', 'vega 9', 'vega 8', 'vega 6', 'vega 3']): return 'gfx902' # Raven Ridge APU (gfx902, gfx903) - elif 'radeon graphics' in gpu_name_lower: # Without (tm) - return 'gfx902' # Vega APUs (gfx90c) - Barcelo, Cezanne, Lucienne, Renoir # Polaris (gfx8xx) elif any(x in gpu_name_lower for x in ['rx 590', 'rx 580', 'rx 570', 'rx 560', 'rx 480', 'rx 470', 'rx 460']):