forked from LykosAI/StabilityMatrix
-
Notifications
You must be signed in to change notification settings - Fork 4
Add TiledVAE decoding and UI integration to Stability Matrix WAN Inference #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
3d76f0e
Merge pull request #1504 from LykosAI/main
mohnjiles 22c0aa0
Fix updating appimage on Linux via self-created bash script
NeuralFault 4c4a10f
Enhance Linux AppImage update process with error handling and user fe…
NeuralFault 84f5085
Refactor AppImage update script execution to improve environment vari…
NeuralFault 33cea37
Merge pull request #1506 from NeuralFault/linux-update-fix
mohnjiles c421649
Add default launch options for ZLUDA stability and update default cro…
NeuralFault 1c447e3
Refactor ComfyZluda class to streamline launch options and improve st…
NeuralFault 69858c3
Restored directives that got removed accidentally during build debugg…
NeuralFault f8a8dab
Merge branch 'LykosAI:main' into CUI-Zluda-launch-fix
NeuralFault 52acb7d
Refactored launch option logic and positioning.
NeuralFault 37f2895
Merge branch 'CUI-Zluda-launch-fix' of https://github.com/NeuralFault…
NeuralFault 0e3c7a3
Remove duplicate using directives in ComfyZluda.cs
NeuralFault a6e052d
Restored using directive for StabilityMatrix.Core.Extensions
NeuralFault 1bcbc0e
Update PreviewImageUri to use new CDN link for AiToolkit
NeuralFault 3a1e9b4
Merge branch 'CUI-Zluda-launch-fix' of https://github.com/NeuralFault…
NeuralFault 895b247
Merge pull request #1521 from NeuralFault/CUI-Zluda-launch-fix
mohnjiles 965ad7a
Corrected gfx110X Windows ROCm nightly index. Added Win-ROCm EnVars
NeuralFault 4516c34
Merge pull request #1524 from NeuralFault/ComfyUI-WinROCm-update
mohnjiles fa2c569
Add TiledVAEDecode backend integration (ComfyNodeBuilder + ComfyClient)
Domica e7c56f4
Add TiledVAEDecode backend integration (ComfyNodeBuilder + ComfyClient)
Domica 0161e3e
Add WAN workflow integration for TiledVAE
Domica c5482d4
Cleanup: remove unused files, debug code, and workflow noise
Domica 1cbb0ba
Format ComfyNodeBuilder with csharpier
Domica baa0c37
Fix: unify temporal tiling toggle and align UI with backend
Domica 47642bd
chore: update TiledVAE settings and adjust logging level
Domica a567d99
Apply suggestion from @ionite34
Domica 2600b4e
chore: remove leftover WAN workflow json (unused and out of scope)
Domica ce0861c
fix: sync WAN viewmodel and ComfyClient after cleanup
Domica 4bd67c9
Update TiledVAEModule.cs
Domica 989db8f
Update InferenceWanTextToVideoViewModel.cs
Domica ec8f8b5
Update TiledVAEModule.cs
Domica e25a344
Create buildexe.yml
Domica 4d0de2d
Update TiledVAEModule.cs
Domica 53465f8
Update InferenceSettingsViewModel.cs
Domica b9fbcf1
Update Settings.cs
Domica 94d7299
Update TiledVAECard.axaml
Domica File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| name: Build Stability Matrix (Windows) | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ "clean-main" ] | ||
| pull_request: | ||
| branches: [ "clean-main" ] | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| build-windows: | ||
| runs-on: windows-latest | ||
|
|
||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Setup .NET SDK 9.x | ||
| uses: actions/setup-dotnet@v4 | ||
| with: | ||
| dotnet-version: '9.0.x' | ||
|
|
||
| - name: Restore Avalonia project | ||
| run: dotnet restore StabilityMatrix.Avalonia/StabilityMatrix.Avalonia.csproj | ||
|
|
||
| - name: Restore Tests project | ||
| run: dotnet restore StabilityMatrix.Tests/StabilityMatrix.Tests.csproj | ||
|
|
||
| - name: Build Avalonia project | ||
| run: dotnet build StabilityMatrix.Avalonia/StabilityMatrix.Avalonia.csproj -c Release --no-restore --no-cache | ||
|
|
||
| - name: Build Tests project | ||
| run: dotnet build StabilityMatrix.Tests/StabilityMatrix.Tests.csproj -c Release --no-restore | ||
|
|
||
| - name: Run Tests | ||
| run: dotnet test StabilityMatrix.Tests/StabilityMatrix.Tests.csproj -c Release --no-build | ||
|
|
||
| - name: Publish Avalonia app (win10-x64) | ||
| run: dotnet publish StabilityMatrix.Avalonia/StabilityMatrix.Avalonia.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -o ./publish/win10-x64 | ||
|
|
||
| - name: Upload Artifact | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: StabilityMatrix-win10-x64 | ||
| path: ./publish/win10-x64/* | ||
| compression-level: 6 | ||
| retention-days: 14 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.