Unverified Commit 2ee32159 authored by Fanli Lin's avatar Fanli Lin Committed by GitHub
Browse files

[tests] make 2 tests device-agnostic (#9347)

* enabel on xpu

* fix style
parent 8ecf499d
...@@ -1036,9 +1036,9 @@ class ConsistencyDecoderVAEIntegrationTests(unittest.TestCase): ...@@ -1036,9 +1036,9 @@ class ConsistencyDecoderVAEIntegrationTests(unittest.TestCase):
"https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main" "https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main"
"/img2img/sketch-mountains-input.jpg" "/img2img/sketch-mountains-input.jpg"
).resize((256, 256)) ).resize((256, 256))
image = torch.from_numpy(np.array(image).transpose(2, 0, 1).astype(np.float32) / 127.5 - 1)[ image = torch.from_numpy(np.array(image).transpose(2, 0, 1).astype(np.float32) / 127.5 - 1)[None, :, :, :].to(
None, :, :, : torch_device
].cuda() )
latent = vae.encode(image).latent_dist.mean latent = vae.encode(image).latent_dist.mean
...@@ -1079,7 +1079,7 @@ class ConsistencyDecoderVAEIntegrationTests(unittest.TestCase): ...@@ -1079,7 +1079,7 @@ class ConsistencyDecoderVAEIntegrationTests(unittest.TestCase):
image = ( image = (
torch.from_numpy(np.array(image).transpose(2, 0, 1).astype(np.float32) / 127.5 - 1)[None, :, :, :] torch.from_numpy(np.array(image).transpose(2, 0, 1).astype(np.float32) / 127.5 - 1)[None, :, :, :]
.half() .half()
.cuda() .to(torch_device)
) )
latent = vae.encode(image).latent_dist.mean latent = vae.encode(image).latent_dist.mean
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment