Skip to content

Commit dd27265

Browse files
[ci]: reduce MG3 SSIM test resolution to 352x640 (~4x faster)
Lowers MATRIXGAME3_PARAMS height/width from 720x1280 to 352x640 in the SSIM regression test (matches MatrixGame 2.0 convention from the MatrixGame2SamplingParam defaults). MATRIXGAME3_FULL_QUALITY_PARAMS remains 720x1280 — it derives from SamplingParam.from_pretrained and covers the full-quality tier separately. Compute reduction: ~4x vs 720p (352*640 / 720*1280 ≈ 0.24). Brings the SSIM test within typical L40S CI runtime budget so a HF reference can be seeded against this resolution. Followup to PR #1201 review: #1201 (comment)
1 parent f63cef0 commit dd27265

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

fastvideo/tests/ssim/test_matrixgame3_similarity.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
MATRIXGAME3_PARAMS = {
3838
"num_gpus": 1,
3939
"model_path": "FastVideo/Matrix-Game-3.0-Base-Distilled-Diffusers",
40-
"height": 720,
41-
"width": 1280,
40+
"height": 352,
41+
"width": 640,
4242
"num_frames": 57,
4343
"num_inference_steps": 3,
4444
"guidance_scale": 5.0,

0 commit comments

Comments
 (0)