Skip to content

Commit eb0848a

Browse files
authored
Merge branch 'main' into Inference-WanTiledVAE
2 parents 9cfbc37 + 954d4ac commit eb0848a

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

StabilityMatrix.Core/Models/Packages/ComfyUI.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ await StandardPipInstallProcessAsync(
382382
var indexUrl = gfxArch switch
383383
{
384384
"gfx1151" => "https://rocm.nightlies.amd.com/v2/gfx1151",
385-
_ when gfxArch.StartsWith("gfx110") => "https://rocm.nightlies.amd.com/v2/gfx110X-dgpu",
385+
_ when gfxArch.StartsWith("gfx110") => "https://rocm.nightlies.amd.com/v2/gfx110X-all",
386386
_ when gfxArch.StartsWith("gfx120") => "https://rocm.nightlies.amd.com/v2/gfx120X-all",
387387
_ => throw new ArgumentOutOfRangeException(
388388
nameof(gfxArch),
@@ -870,6 +870,8 @@ private ImmutableDictionary<string, string> GetEnvVars(ImmutableDictionary<strin
870870
// set some experimental speed improving env vars for Windows ROCm
871871
return env.SetItem("PYTORCH_TUNABLEOP_ENABLED", "1")
872872
.SetItem("MIOPEN_FIND_MODE", "2")
873-
.SetItem("TORCH_ROCM_AOTRITON_ENABLE_EXPERIMENTAL", "1");
873+
.SetItem("TORCH_ROCM_AOTRITON_ENABLE_EXPERIMENTAL", "1")
874+
.SetItem("PYTORCH_ALLOC_CONF", "max_split_size_mb:6144,garbage_collection_threshold:0.8") // greatly helps prevent GPU OOM and instability/driver timeouts/OS hard locks and decreases dependency on Tiled VAE at standard res's
875+
.SetItem("COMFYUI_ENABLE_MIOPEN", "1"); // re-enables "cudnn" in ComfyUI as it's needed for MiOpen to function properly
874876
}
875877
}

StabilityMatrix.Core/Models/Packages/VladAutomatic.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ IPyInstallationManager pyInstallationManager
3131
public override string Name => "automatic";
3232
public override string DisplayName { get; set; } = "SD.Next";
3333
public override string Author => "vladmandic";
34-
public override string LicenseType => "AGPL-3.0";
35-
public override string LicenseUrl => "https://github.com/vladmandic/automatic/blob/master/LICENSE.txt";
36-
public override string Blurb => "Stable Diffusion implementation with advanced features and modern UI";
34+
public override string LicenseType => "Apache License 2.0";
35+
public override string LicenseUrl => "https://github.com/vladmandic/sdnext/blob/master/LICENSE.txt";
36+
public override string Blurb => "SD.Next: All-in-one WebUI for AI generative image and video creation";
3737
public override string LaunchCommand => "launch.py";
3838

3939
public override Uri PreviewImageUri => new("https://cdn.lykos.ai/sm/packages/vladautomatic/preview.webp");

0 commit comments

Comments
 (0)