|  | 
| 33 | 33 |     "flow_shift": 17, | 
| 34 | 34 |     "seed": 1024, | 
| 35 | 35 |     "sp_size": 2, | 
| 36 |  | -    "tp_size": 2, | 
|  | 36 | +    "tp_size": 1, | 
| 37 | 37 |     "vae_sp": True, | 
| 38 | 38 |     "fps": 24, | 
| 39 | 39 | } | 
|  | 
| 50 | 50 |     "flow_shift": 7.0, | 
| 51 | 51 |     "seed": 1024, | 
| 52 | 52 |     "sp_size": 2, | 
| 53 |  | -    "tp_size": 2, | 
|  | 53 | +    "tp_size": 1, | 
| 54 | 54 |     "vae_sp": True, | 
| 55 | 55 |     "fps": 24, | 
| 56 | 56 |     "neg_prompt": "Bright tones, overexposed, static, blurred details, subtitles, style, works, paintings, images, static, overall gray, worst quality, low quality, JPEG compression residue, ugly, incomplete, extra fingers, poorly drawn hands, poorly drawn faces, deformed, disfigured, misshapen limbs, fused fingers, still picture, messy background, three legs, many people in the background, walking backwards", | 
|  | 
| 69 | 69 |     "flow_shift": 7.0, | 
| 70 | 70 |     "seed": 1024, | 
| 71 | 71 |     "sp_size": 2, | 
| 72 |  | -    "tp_size": 2, | 
|  | 72 | +    "tp_size": 1, | 
| 73 | 73 |     "vae_sp": True, | 
| 74 | 74 |     "fps": 24, | 
| 75 | 75 |     "neg_prompt": "Bright tones, overexposed, static, blurred details, subtitles, style, works, paintings, images, static, overall gray, worst quality, low quality, JPEG compression residue, ugly, incomplete, extra fingers, poorly drawn hands, poorly drawn faces, deformed, disfigured, misshapen limbs, fused fingers, still picture, messy background, three legs, many people in the background, walking backwards", | 
| @@ -238,7 +238,7 @@ def test_i2v_inference_similarity(prompt, ATTENTION_BACKEND, model_id): | 
| 238 | 238 |         logger.error("Failed to write SSIM results to file") | 
| 239 | 239 | 
 | 
| 240 | 240 |     min_acceptable_ssim = 0.97 | 
| 241 |  | -    assert mean_ssim >= min_acceptable_ssim, f"SSIM value {mean_ssim} is below threshold {min_acceptable_ssim}" | 
|  | 241 | +    assert mean_ssim >= min_acceptable_ssim, f"SSIM value {mean_ssim} is below threshold {min_acceptable_ssim} for {model_id} with backend {ATTENTION_BACKEND}" | 
| 242 | 242 | 
 | 
| 243 | 243 | @pytest.mark.parametrize("prompt", TEST_PROMPTS) | 
| 244 | 244 | @pytest.mark.parametrize("ATTENTION_BACKEND", ["FLASH_ATTN", "TORCH_SDPA"]) | 
| @@ -337,5 +337,5 @@ def test_inference_similarity(prompt, ATTENTION_BACKEND, model_id): | 
| 337 | 337 |     if not success: | 
| 338 | 338 |         logger.error("Failed to write SSIM results to file") | 
| 339 | 339 | 
 | 
| 340 |  | -    min_acceptable_ssim = 0.95 | 
| 341 |  | -    assert mean_ssim >= min_acceptable_ssim, f"SSIM value {mean_ssim} is below threshold {min_acceptable_ssim}" | 
|  | 340 | +    min_acceptable_ssim = 0.93 | 
|  | 341 | +    assert mean_ssim >= min_acceptable_ssim, f"SSIM value {mean_ssim} is below threshold {min_acceptable_ssim} for {model_id} with backend {ATTENTION_BACKEND}" | 
0 commit comments