Releases: Saganaki22/Dots-TTS-ComfyUI
Releases · Saganaki22/Dots-TTS-ComfyUI
Release list
0.1.3
Dots TTS ComfyUI v0.1.3
Added
- Added an opt-in
compiletoggle to Dots TTS Load Model. - Uses native PyTorch Inductor and Triton compilation.
- Compatible with SDPA and Flash Attention.
- Added CUDA, Triton, Inductor, and compile-length validation.
- Added automatic compatibility handling for ComfyUI's
cudaMallocAsyncallocator.
Fixed
- Fixed the
cudaMallocAsync does not yet support checkPoolLiveAllocationscrash. - Fixed streaming vocoder LSTM compilation on PyTorch 2.10.
- Fixed compiled graphs and static generation workspaces remaining after unload.
- Changing model, device, dtype, attention, or compile mode now fully unloads the previous bundle.
Changed
- CUDA Graph Trees are automatically disabled with
cudaMallocAsync; Inductor and Triton compilation remain active. - The terminal displays
Preparing/compilinguntil the first audio patch is ready. - Compilation is lazy. The first generation for each length bucket is slower, while later generations reuse the compiled graph.
- Compiled generation supports up to
1024audio patches.
Notes
- Compilation is CUDA-only and requires a working Triton installation.
- For the fastest generation, use Dots TTS MF BF16 with
steps=4.
0.1.2
v0.1.2
- Fixed
dots_tts/models/being excluded from the repository due to an overly broadmodels/gitignore pattern - Added
dots_tts.models.dots_ttspackage to git tracking (config, core, model) - Removed accidentally tracked
__pycache__/*.pycfiles - Narrowed
.gitignorefrommodels/to/runtime/models/ - Bumped version to
0.1.2
0.1.1
Dots TTS ComfyUI v0.1.1
Changed
- Replaced the hand-built generation progress output with a live
tqdmprogress bar. - Added percentage, elapsed time, estimated remaining time, and iteration speed.
- Progress refreshes every 10 generated chunks.
- Added Unicode block rendering for a clearer terminal display.
- Preserved ComfyUI's native node progress tracking.
- Completed bars now show the actual emitted chunk count when generation stops early at EOS.
Dependencies
- Added
tqdm>=4.66.0.
Documentation
- Documented how the progress total relates to
max_audio_patchesand EOS.