jokerbit commited on
Commit
25afd0d
·
verified ·
1 Parent(s): d3650e2

Get backend - 6

Browse files
Files changed (1) hide show
  1. src/pipeline.py +1 -1
src/pipeline.py CHANGED
@@ -54,7 +54,7 @@ def load_pipeline() -> Pipeline:
54
  torch_dtype=torch.bfloat16,
55
  ).to("cuda")
56
 
57
- # pipeline.to(memory_format=torch.channels_last)
58
  pipeline.transformer = torch.compile(pipeline.transformer, mode="max-autotune")
59
  quantize_(pipeline.vae, int8_weight_only())
60
  # pipeline.vae = torch.compile(pipeline.vae, mode="max-autotune")
 
54
  torch_dtype=torch.bfloat16,
55
  ).to("cuda")
56
 
57
+ pipeline.transformer.to(memory_format=torch.channels_last)
58
  pipeline.transformer = torch.compile(pipeline.transformer, mode="max-autotune")
59
  quantize_(pipeline.vae, int8_weight_only())
60
  # pipeline.vae = torch.compile(pipeline.vae, mode="max-autotune")