Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
8010ebe
1
Parent(s):
5f82665
Update app.py
Browse files
app.py
CHANGED
|
@@ -21,7 +21,7 @@ pipe = StableVideoDiffusionPipeline.from_pretrained(
|
|
| 21 |
)
|
| 22 |
pipe.to("cuda")
|
| 23 |
pipe.unet = torch.compile(pipe.unet, mode="reduce-overhead", fullgraph=True)
|
| 24 |
-
pipe.vae = torch.compile(pipe.vae, mode="reduce-overhead", fullgraph=True)
|
| 25 |
|
| 26 |
max_64_bit_int = 2**63 - 1
|
| 27 |
|
|
|
|
| 21 |
)
|
| 22 |
pipe.to("cuda")
|
| 23 |
pipe.unet = torch.compile(pipe.unet, mode="reduce-overhead", fullgraph=True)
|
| 24 |
+
#pipe.vae = torch.compile(pipe.vae, mode="reduce-overhead", fullgraph=True)
|
| 25 |
|
| 26 |
max_64_bit_int = 2**63 - 1
|
| 27 |
|