Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/pipelines/helios/test_helios.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ def test_inference(self):
generated_slice = torch.cat([generated_slice[:8], generated_slice[-8:]])
self.assertTrue(torch.allclose(generated_slice, expected_slice, atol=1e-3))

# Override to set a more lenient max diff threshold.
@unittest.skip("Latents are always processed in FP32. Save/Load the entire pipeline in FP16 will result in errors")
def test_save_load_float16(self):
super().test_save_load_float16(expected_max_diff=0.03)
pass

@unittest.skip("Test not supported")
def test_attention_slicing_forward_pass(self):
Expand Down