Reduce a line
Browse files- src/pipeline.py +1 -2
src/pipeline.py
CHANGED
@@ -53,9 +53,8 @@ def load_pipeline() -> Pipeline:
|
|
53 |
torch_dtype=torch.bfloat16,
|
54 |
).to("cuda")
|
55 |
|
56 |
-
pipeline.
|
57 |
pipeline.transformer = torch.compile(pipeline.transformer, mode="max-autotune", fullgraph=False)
|
58 |
-
pipeline.vae.to(memory_format=torch.channels_last)
|
59 |
quantize_(pipeline.vae, int8_weight_only())
|
60 |
pipeline.vae = torch.compile(pipeline.vae, fullgraph=True, mode="max-autotune")
|
61 |
|
|
|
53 |
torch_dtype=torch.bfloat16,
|
54 |
).to("cuda")
|
55 |
|
56 |
+
pipeline.to(memory_format=torch.channels_last)
|
57 |
pipeline.transformer = torch.compile(pipeline.transformer, mode="max-autotune", fullgraph=False)
|
|
|
58 |
quantize_(pipeline.vae, int8_weight_only())
|
59 |
pipeline.vae = torch.compile(pipeline.vae, fullgraph=True, mode="max-autotune")
|
60 |
|