Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion StabilityMatrix.Core/Models/Packages/ComfyUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ _ when gfxArch.StartsWith("gfx120") => "https://rocm.nightlies.amd.com/v2/gfx120
ExtraPipArgs = ["numpy<2"],
TorchaudioVersion = " ", // Request torchaudio without a specific version
CudaIndex = isLegacyNvidia ? "cu126" : "cu130",
RocmIndex = "rocm6.4",
RocmIndex = "rocm7.1",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

This update to rocm7.1 is correct. To maintain consistency and avoid potential issues with other packages using default values, consider also updating the default rocmIndex parameter in the GetTorchPipArgs method in BaseGitPackage.cs from rocm6.4 to rocm7.1.

UpgradePackages = true,
PostInstallPipArgs = ["typing-extensions>=4.15.0"],
};
Expand Down
2 changes: 1 addition & 1 deletion StabilityMatrix.Core/Models/Packages/SDWebForge.cs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ torchIndex is TorchIndex.Cuda
TorchVersion = "",
TorchvisionVersion = "",
CudaIndex = isBlackwell ? "cu128" : "cu126",
RocmIndex = "rocm6.4",
RocmIndex = "rocm7.1",
ExtraPipArgs =
[
"https://github.com/openai/CLIP/archive/d50d76daa670286dd6cacf3bcd80b5e4823fc8e1.zip",
Expand Down
Loading