ACE VAE works in fp16. (#8055)

This commit is contained in:
comfyanonymous 2025-05-11 01:58:00 -07:00 committed by GitHub
parent 3535909eb8
commit 577de83ca9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -451,7 +451,7 @@ class VAE:
self.latent_dim = 2
self.process_output = lambda audio: audio
self.process_input = lambda audio: audio
self.working_dtypes = [torch.bfloat16, torch.float32]
self.working_dtypes = [torch.bfloat16, torch.float16, torch.float32]
self.disable_offload = True
self.extra_1d_channel = 16
else: