Skip to main content

← All model recipe tasks

wan2_2_ti2v model family

Tasks

Supported architectures and task heads

The Hugging Face values below are copied from checkpoint metadata at the recorded revision. The TRTMC task contract comes from the exact E2E recipe. Architecture identity selects or describes a source graph; it does not imply that TRTMC reproduces every Hugging Face head with the same model_type. For example, an encoder recipe may consume the base model and intentionally return hidden states instead of the checkpoint's pretraining or classification logits.

HF model_typeHF architecture / pipeline classTRTMC task contractExact recipe profiles
ti2vWanModel
Source: config._class_name
Metadata: config.json at 921dbaf3f167
diffusion_media_generation
wan22-ti2v-5b
wan22-ti2v-5b-l0

Declared recipes

Each row comes from a model-owned E2E manifest. It declares a test recipe; it is not a live pass receipt for every hardware target.

RecipeExact Hugging Face checkpointTaskBuild configurationDeclared E2E casesManifest
wan22-ti2v-5bWan-AI/Wan2.2-TI2V-5B
Revision: 921dbaf3f1674a56f47e83fb80a34bac8a8f203e
bf16; single devicewan22-ti2v-5btests/e2e/models/wan2_2_ti2v/manifests/wan22-ti2v-5b.json
wan22-ti2v-5b-l0Wan-AI/Wan2.2-TI2V-5B
Revision: 921dbaf3f1674a56f47e83fb80a34bac8a8f203e
bf16; single devicewan22-ti2v-5b-l0tests/e2e/models/wan2_2_ti2v/manifests/wan22-ti2v-5b-l0.json

Family-owned configuration

These keys are extracted from the family's registered config schema. Pass one key per repeatable --set namespace.field=value argument. Build-time keys belong on trtmc build; session keys belong on the family's inference command.

wan2_2_ti2v

Schema sources: python/tensorrt_model_connect/families/wan2_2_ti2v/runtime_config_schema.py
src/runtime/models/wan2_2_ti2v/config_schema.cpp

--set keyTypeDefaultCLI surfaceAllowed configuration layers
wan2_2_ti2v.easycache_enabledboolfalseruntimePlatform Profile, Session Request
wan2_2_ti2v.easycache_first_exact_stepsint647runtimePlatform Profile, Session Request
wan2_2_ti2v.easycache_last_exact_stepsint642runtimePlatform Profile, Session Request
wan2_2_ti2v.easycache_max_consecutive_reuseint641runtimePlatform Profile, Session Request
wan2_2_ti2v.easycache_thresholddouble0.02runtimePlatform Profile, Session Request
wan2_2_ti2v.late_cfg_enabledboolfalseruntimePlatform Profile, Session Request
trtmc generate-video <bundle.bundle> <task-inputs> --set wan2_2_ti2v.easycache_enabled=<value>

The registry rejects unknown namespaces and fields. A --config file can set the same keys in JSON or YAML form.

Family-specific CLI contracts

Inputs and options below are filtered by the declared E2E task and the methods and configuration fields used by that family's native runtime implementation. The global CLI parser accepts a wider union of flags; flags absent here are not declared for this family.

trtmc generate-video

Generate video frames from a text prompt.

Declared recipes: wan22-ti2v-5b, wan22-ti2v-5b-l0

trtmc generate-video <bundle.bundle> --prompt "<text>" --output <output-dir> [generation options]
Supported input or optionRequirementRuntime behavior
--prompt <TEXT>RequiredText conditioning input.
--output <DIR>OptionalDirectory for generated PNG frames.
--seed <N>OptionalSet the sampling or diffusion seed.
--num-steps <N>OptionalSet the number of diffusion or flow-matching steps.
--guidance-scale <F>OptionalSet classifier-free guidance strength.
--initial-latents-raw <PATH>OptionalLoad packed float32 initial latents.
--negative-prompt <TEXT>OptionalOverride the bundle default negative prompt.
--height <N>OptionalOverride the generated image or video height.
--width <N>OptionalOverride the generated image or video width.
Code basis

Runtime provider: wan2_2_ti2v

  • include/trtmc/pipeline.h
  • src/cli/main.cpp
  • src/runtime/models/wan2_2_ti2v/options.cpp
  • src/runtime/models/wan2_2_ti2v/pipeline.h
  • tests/e2e/models/wan2_2_ti2v/manifests/wan22-ti2v-5b-l0.json
  • tests/e2e/models/wan2_2_ti2v/manifests/wan22-ti2v-5b.json

Bundle lifecycle commands

These commands apply to every declared recipe in this family; they do not add task inputs or model capabilities.

trtmc build

Build one exact checkpoint into a TensorRT-Model-Connect bundle.

trtmc build <hf-id> --output <bundle.bundle>

trtmc inspect

Inspect bundle metadata, runtime identity, and packaged sections.

trtmc inspect <bundle.bundle>

See the CLI Reference for all options and limitations.