Skip to content

Releases: Saganaki22/Dots-TTS-ComfyUI

0.1.3

Choose a tag to compare

@Saganaki22 Saganaki22 released this 11 Jun 10:27

Dots TTS ComfyUI v0.1.3

Added

  • Added an opt-in compile toggle 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 cudaMallocAsync allocator.

Fixed

  • Fixed the cudaMallocAsync does not yet support checkPoolLiveAllocations crash.
  • 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/compiling until 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 1024 audio 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

Choose a tag to compare

@Saganaki22 Saganaki22 released this 09 Jun 04:45

v0.1.2

  • Fixed dots_tts/models/ being excluded from the repository due to an overly broad models/ gitignore pattern
  • Added dots_tts.models.dots_tts package to git tracking (config, core, model)
  • Removed accidentally tracked __pycache__/*.pyc files
  • Narrowed .gitignore from models/ to /runtime/models/
  • Bumped version to 0.1.2

0.1.1

Choose a tag to compare

@Saganaki22 Saganaki22 released this 07 Jun 23:40

Dots TTS ComfyUI v0.1.1

Changed

  • Replaced the hand-built generation progress output with a live tqdm progress 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_patches and EOS.

0.1.0

Choose a tag to compare

@Saganaki22 Saganaki22 released this 06 Jun 04:52

Initial Release