From 3d3fe20bd8459cf9d196e713e4e093fef7d67d55 Mon Sep 17 00:00:00 2001 From: NeuralFault Date: Sun, 8 Mar 2026 19:32:54 -0400 Subject: [PATCH 1/2] Add gfx1150 ROCm nightly V2-staging index URL for Strix Point (Ryzen AI 300) APUs --- StabilityMatrix.Core/Models/Packages/ComfyUI.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/StabilityMatrix.Core/Models/Packages/ComfyUI.cs b/StabilityMatrix.Core/Models/Packages/ComfyUI.cs index 06e99a8a..245cd5b9 100644 --- a/StabilityMatrix.Core/Models/Packages/ComfyUI.cs +++ b/StabilityMatrix.Core/Models/Packages/ComfyUI.cs @@ -398,6 +398,7 @@ await StandardPipInstallProcessAsync( var indexUrl = gfxArch switch { "gfx1151" => "https://rocm.nightlies.amd.com/v2/gfx1151", + "gfx1150" => "https://rocm.nightlies.amd.com/v2-staging/gfx1150", _ when gfxArch.StartsWith("gfx110") => "https://rocm.nightlies.amd.com/v2/gfx110X-all", _ when gfxArch.StartsWith("gfx120") => "https://rocm.nightlies.amd.com/v2/gfx120X-all", _ => throw new ArgumentOutOfRangeException( From acc8b816a5b31c2271cb61f157bd6240d953ab3e Mon Sep 17 00:00:00 2001 From: NeuralFault <65365345+NeuralFault@users.noreply.github.com> Date: Mon, 9 Mar 2026 21:08:27 -0400 Subject: [PATCH 2/2] Changed order numerically and commented chip codenames for maintainability --- StabilityMatrix.Core/Models/Packages/ComfyUI.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/StabilityMatrix.Core/Models/Packages/ComfyUI.cs b/StabilityMatrix.Core/Models/Packages/ComfyUI.cs index 245cd5b9..215901ed 100644 --- a/StabilityMatrix.Core/Models/Packages/ComfyUI.cs +++ b/StabilityMatrix.Core/Models/Packages/ComfyUI.cs @@ -397,8 +397,8 @@ await StandardPipInstallProcessAsync( ); var indexUrl = gfxArch switch { - "gfx1151" => "https://rocm.nightlies.amd.com/v2/gfx1151", - "gfx1150" => "https://rocm.nightlies.amd.com/v2-staging/gfx1150", + "gfx1150" => "https://rocm.nightlies.amd.com/v2-staging/gfx1150", // Strix/Gorgon Point + "gfx1151" => "https://rocm.nightlies.amd.com/v2/gfx1151", // Strix Halo _ when gfxArch.StartsWith("gfx110") => "https://rocm.nightlies.amd.com/v2/gfx110X-all", _ when gfxArch.StartsWith("gfx120") => "https://rocm.nightlies.amd.com/v2/gfx120X-all", _ => throw new ArgumentOutOfRangeException(