We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df26789 commit f5d4599Copy full SHA for f5d4599
1 file changed
StabilityMatrix.Core/Models/Packages/AiToolkit.cs
@@ -98,9 +98,10 @@ public override async Task InstallPackage(
98
pipArgs = new PipInstallArgs("--upgrade")
99
.WithParsedFromRequirementsTxt(
100
await requirements.ReadAllTextAsync(cancellationToken).ConfigureAwait(false),
101
- excludePattern: "torch$|numpy"
+ excludePattern: "torch"
102
)
103
- .AddArg(Compat.IsWindows ? "triton-windows" : "triton");
+ .AddArg(Compat.IsWindows ? "triton-windows" : "triton")
104
+ .WithTorchExtraIndex(isBlackwell ? "cu128" : "cu126");
105
106
if (installedPackage.PipOverrides != null)
107
{
0 commit comments