Views
No views yet
zai-org/CogVideoX-2b revision 1137dacfc2c9c012bed6a0793f4ecf2ca8e7ba01 (apache-2.0). Canonical inference_metadata.yaml is hashless workflow IR with typed DDIM v_prediction, rank-5 transpose, latent unscale, chunked causal VAE decode, and temporal cache recurrence.LICENSE; see NOTICE.md for attribution and modification details.hf download justinchuby/onnx-genai-cogvideox-2b --repo-type model --local-dir cogvideox-2b1git clone https://github.com/justinchuby/onnx-genai.git
2cd onnx-genai && git checkout justinchuby/catalogue-diffusion-runtime
3ORT=/path/to/onnxruntime-gpu/lib
4VIDEO_WORKFLOW_PACKAGE_DIR=../cogvideox-2b VIDEO_WORKFLOW_INPUT_DIR=../cogvideox-2b/generic_runtime_inputs VIDEO_WORKFLOW_OUTPUT_DIR=../cogvideox-2b/generic_runtime_outputs VIDEO_WORKFLOW_STEPS=20 ONNX_GENAI_EP=cuda ONNX_GENAI_EP_FALLBACK=1 ONNX_GENAI_ORT_LIB=$ORT/libonnxruntime.so.1.28.0 ONNX_GENAI_ORT_LIB_DIR=$ORT cargo test -p onnx-genai-engine --features onnx-genai-ort/cuda --test video_workflow_e2e -- --ignored --nocapturegenerated.mp4 and frames/*.png from the Mobius runner; generic_runtime_outputs/generated.mp4 and its frame sequence from the ONNX GenAI workflow engine. Full versions, timings, and peak memory are in execution_evidence.json and generic_runtime_evidence.json.| Model Name | CogVideoX-2B (This Repository) | CogVideoX-5B |
|---|---|---|
| Model Description | Entry-level model, balancing compatibility. Low cost for running and secondary development. | Larger model with higher video generation quality and better visual effects. |
| Inference Precision | FP16* (Recommended), BF16, FP32, FP8*, INT8, no support for INT4 | BF16 (Recommended), FP16, FP32, FP8*, INT8, no support for INT4 |
| Single GPU VRAM Consumption | SAT FP16: 18GB diffusers FP16: starting from 4GB* diffusers INT8(torchao): starting from 3.6GB* | SAT BF16: 26GB diffusers BF16: starting from 5GB* diffusers INT8(torchao): starting from 4.4GB* |
| Multi-GPU Inference VRAM Consumption | FP16: 10GB* using diffusers | BF16: 15GB* using diffusers |
| Inference Speed (Step = 50, FP/BF16) | Single A100: ~90 seconds Single H100: ~45 seconds | Single A100: ~180 seconds Single H100: ~90 seconds |
| Fine-tuning Precision | FP16 | BF16 |
| Fine-tuning VRAM Consumption (per GPU) | 47 GB (bs=1, LORA) 61 GB (bs=2, LORA) 62GB (bs=1, SFT) | 63 GB (bs=1, LORA) 80 GB (bs=2, LORA) 75GB (bs=1, SFT) |
| Prompt Language | English* | |
| Prompt Length Limit | 226 Tokens | |
| Video Length | 6 Seconds | |
| Frame Rate | 8 Frames per Second | |
| Video Resolution | 720 x 480, no support for other resolutions (including fine-tuning) | |
| Positional Encoding | 3d_sincos_pos_embed | 3d_rope_pos_embed |
diffusers library, all optimizations provided by the diffusers library were enabled. This
solution has not been tested for actual VRAM/memory usage on devices other than NVIDIA A100 / H100. Generally,
this solution can be adapted to all devices with NVIDIA Ampere architecture and above. If the optimizations are
disabled, VRAM usage will increase significantly, with peak VRAM usage being about 3 times higher than the table
shows. However, speed will increase by 3-4 times. You can selectively disable some optimizations, including:pipe.enable_model_cpu_offload()
pipe.enable_sequential_cpu_offload()
pipe.vae.enable_slicing()
pipe.vae.enable_tiling()enable_model_cpu_offload() optimization needs to be disabled.FP16 precision, and the 5B model is trained with BF16 precision. We recommend using
the precision the model was trained with for inference.torch.compile, which can significantly improve inference speed. FP8
precision must be used on devices with NVIDIA H100 or above, which requires installing
the torch, torchao, diffusers, and accelerate Python packages from source. CUDA 12.4 is recommended.diffusers version of the model supports quantization.1# diffusers>=0.30.1
2# transformers>=0.44.0
3# accelerate>=0.33.0 (suggest install from source)
4# imageio-ffmpeg>=0.5.1
5pip install --upgrade transformers accelerate diffusers imageio-ffmpeg 1import torch
2from diffusers import CogVideoXPipeline
3from diffusers.utils import export_to_video
4
5prompt = "A panda, dressed in a small, red jacket and a tiny hat, sits on a wooden stool in a serene bamboo forest. The panda's fluffy paws strum a miniature acoustic guitar, producing soft, melodic tunes. Nearby, a few other pandas gather, watching curiously and some clapping in rhythm. Sunlight filters through the tall bamboo, casting a gentle glow on the scene. The panda's face is expressive, showing concentration and joy as it plays. The background includes a small, flowing stream and vibrant green foliage, enhancing the peaceful and magical atmosphere of this unique musical performance."
6
7pipe = CogVideoXPipeline.from_pretrained(
8 "THUDM/CogVideoX-2b",
9 torch_dtype=torch.float16
10)
11
12pipe.enable_model_cpu_offload()
13pipe.enable_sequential_cpu_offload()
14pipe.vae.enable_slicing()
15pipe.vae.enable_tiling()
16video = pipe(
17 prompt=prompt,
18 num_videos_per_prompt=1,
19 num_inference_steps=50,
20 num_frames=49,
21 guidance_scale=6,
22 generator=torch.Generator(device="cuda").manual_seed(42),
23).frames[0]
24
25export_to_video(video, "output.mp4", fps=8)torch.compile, which allows for much faster inference speed.1# To get started, PytorchAO needs to be installed from the GitHub source and PyTorch Nightly.
2# Source and nightly installation is only required until next release.
3
4import torch
5from diffusers import AutoencoderKLCogVideoX, CogVideoXTransformer3DModel, CogVideoXPipeline
6from diffusers.utils import export_to_video
7+ from transformers import T5EncoderModel
8+ from torchao.quantization import quantize_, int8_weight_only, int8_dynamic_activation_int8_weight
9
10+ quantization = int8_weight_only
11
12+ text_encoder = T5EncoderModel.from_pretrained("THUDM/CogVideoX-5b", subfolder="text_encoder", torch_dtype=torch.bfloat16)
13+ quantize_(text_encoder, quantization())
14
15+ transformer = CogVideoXTransformer3DModel.from_pretrained("THUDM/CogVideoX-5b", subfolder="transformer", torch_dtype=torch.bfloat16)
16+ quantize_(transformer, quantization())
17
18+ vae = AutoencoderKLCogVideoX.from_pretrained("THUDM/CogVideoX-2b", subfolder="vae", torch_dtype=torch.bfloat16)
19+ quantize_(vae, quantization())
20
21# Create pipeline and run inference
22pipe = CogVideoXPipeline.from_pretrained(
23 "THUDM/CogVideoX-2b",
24+ text_encoder=text_encoder,
25+ transformer=transformer,
26+ vae=vae,
27 torch_dtype=torch.bfloat16,
28)
29pipe.enable_model_cpu_offload()
30pipe.vae.enable_tiling()
31
32prompt = "A panda, dressed in a small, red jacket and a tiny hat, sits on a wooden stool in a serene bamboo forest. The panda's fluffy paws strum a miniature acoustic guitar, producing soft, melodic tunes. Nearby, a few other pandas gather, watching curiously and some clapping in rhythm. Sunlight filters through the tall bamboo, casting a gentle glow on the scene. The panda's face is expressive, showing concentration and joy as it plays. The background includes a small, flowing stream and vibrant green foliage, enhancing the peaceful and magical atmosphere of this unique musical performance."
33
34video = pipe(
35 prompt=prompt,
36 num_videos_per_prompt=1,
37 num_inference_steps=50,
38 num_frames=49,
39 guidance_scale=6,
40 generator=torch.Generator(device="cuda").manual_seed(42),
41).frames[0]
42
43export_to_video(video, "output.mp4", fps=8)@article{yang2024cogvideox,
title={CogVideoX: Text-to-Video Diffusion Models with An Expert Transformer},
author={Yang, Zhuoyi and Teng, Jiayan and Zheng, Wendi and Ding, Ming and Huang, Shiyu and Xu, Jiazheng and Yang, Yuanming and Hong, Wenyi and Zhang, Xiaohan and Feng, Guanyu and others},
journal={arXiv preprint arXiv:2408.06072},
year={2024}
}inference_metadata.annotated.yaml for inline explanations of this package's workflow, tensor/state/cache contracts, and fail-closed omissions. inference_metadata.yaml remains the canonical machine-authored contract; automated validation confirms both files parse to the same metadata object.