Skip to content

Commit a7b9634

Browse files
authored
Fix minor bug in SD3 img2img test (#8779)
fix minor bug in sd3 img2img
1 parent 6b6b4bc commit a7b9634

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

tests/pipelines/stable_diffusion_3/test_pipeline_stable_diffusion_3_img2img.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ def get_dummy_components(self):
108108

109109
def get_dummy_inputs(self, device, seed=0):
110110
image = floats_tensor((1, 3, 32, 32), rng=random.Random(seed)).to(device)
111-
image = image / 2 + 0.5
112111
if str(device).startswith("mps"):
113112
generator = torch.manual_seed(seed)
114113
else:

0 commit comments

Comments
 (0)