tsqn commited on
Commit
e7cba91
·
verified ·
1 Parent(s): 5eba41b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -162,8 +162,8 @@ pipe.to("cuda")
162
  # pipe.load_lora_weights("TODO/TODO", adapter_name="ltx-lora")
163
  # pipe.set_adapters(["lrx-lora"], adapter_weights=[1.0])
164
 
165
- pipe.vae.to(memory_format=torch.channels_last)
166
  pipe.vae.decode = torch.compile(pipe.vae.decode, mode="max-autotune", fullgraph=True)
 
167
 
168
  @spaces.GPU(duration=120)
169
  @torch.inference_mode()
 
162
  # pipe.load_lora_weights("TODO/TODO", adapter_name="ltx-lora")
163
  # pipe.set_adapters(["lrx-lora"], adapter_weights=[1.0])
164
 
 
165
  pipe.vae.decode = torch.compile(pipe.vae.decode, mode="max-autotune", fullgraph=True)
166
+ pipe.vae = torch.compile(pipe.vae.decode, mode="reduce-overhead", fullgraph=True)
167
 
168
  @spaces.GPU(duration=120)
169
  @torch.inference_mode()