Skip to content

Sol-Engine

Sol-Engine is an efficiency-oriented inference framework for high-resolution video diffusion. It wraps Cosmos3-Super, LTX-2.3, SANA-Video, Wan2.2 (TI2V-5B and A14B), and LingBot-Video with one explicit acceleration line per model.

Recently added

2026/07/15 — three new models: Wan2.2 TI2V-5B ~2.89×, Wan2.2-A14B ~2.17×, and LingBot-Video ~2.60× end-to-end.

2026/07/13 — refreshed the agent workflow: a master orchestrator driving per-technique executor sub-agents with automatic quality gates.

Models and speedups

Model Params Acceleration line Speedup
Cosmos3-Super (4xB200) 64B TeaCache + NVFP4 ~2.26x
LTX-2.3 (1xB200) 22B cache + PISA + NVFP4 + token-prune .. 2.40x
SANA-Video (1xB200) 2B EasyCache + kernel fusion + compile 2.77x
Wan2.2 TI2V-5B (1xGB200) 5B EasyCache + kernel fusion + compile 2.89x
Wan2.2-A14B (1xGB200) 14B kernel fusion + EasyCache + PISA 2.17x
LingBot-Video (4xGB200) 30B-A3B kernel fusion + refiner PISA + EasyCache 2.60x

The five acceleration methods

Video diffusion inference exposes redundancy at three complementary levels: Algorithm level: adjacent denoising steps run structurally similar computation over slowly changing latents. Model level: long spatiotemporal sequences contain redundant tokens and attention interactions. Kernel level: DiT blocks repeatedly launch memory-bound work around GEMMs, layout movement, normalization, activation, and precision conversion.

Method Implemented entries
Cache TeaCache, EasyCache, fixed-step cache
Quantization NVFP4
Kernel fusion AdaLN gate fusion, GEMM epilogues, QKV merge, ...
Sparse attention PISA, SpargeAttention, Sparse VideoGen, ...
Token pruning Feature-norm pruning, ToMe-SD

Quick start

In Claude Code or Codex, run:

/goal Execute the inference code for the six models using both baseline and full-opt
settings with the following requirements. Refer to AGENTS.md for the environment creation,
model download, and inference guides. For the environment, you need to create a new
environment. For model weights, you are allowed to reuse existing weights if they are
locally available; otherwise, you need to download them. Regarding adaptability, be aware
that the provided guides for environment creation, download scripts, and inference may
contain system incompatibilities, so you are expected to troubleshoot and adapt them to
your specific machine.

Start here

  • Installation: environment creation, CUDA JIT fixups, and model downloads.
  • Pipelines: optimized launch paths for all six models (Cosmos3-Super, LTX-2.3, SANA-Video, Wan-5B, Wan-14B, LingBot-Video).
  • Techniques: the five acceleration methods and where they apply.
  • Agent workflow: the orchestration (master/executors, quality gates) behind the agent-native quick start.

Citation

@misc{li2026solvideoinferenceengine,
  title         = {Sol Video Inference Engine: Agent-Native Full-Stack Acceleration Framework for Efficient Video Generation},
  author        = {Yitong Li and Junsong Chen and Haopeng Li and Haozhe Liu and Jincheng Yu and Ligeng Zhu and Ping Luo and Song Han and Enze Xie},
  year          = {2026},
  eprint        = {2606.23743},
  archivePrefix = {arXiv},
  primaryClass  = {cs.CV},
  doi           = {10.48550/arXiv.2606.23743},
  url           = {https://arxiv.org/abs/2606.23743},
}