multimodalart HF staff commited on
Commit
8010ebe
1 Parent(s): 5f82665

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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