Upload src/pipeline.py with huggingface_hub
Browse files- src/pipeline.py +3 -4
src/pipeline.py
CHANGED
@@ -42,14 +42,13 @@ def load_pipeline() -> Pipeline:
|
|
42 |
transformer=transformer,
|
43 |
local_files_only=True,
|
44 |
torch_dtype=torch.bfloat16,
|
45 |
-
)
|
46 |
|
47 |
pipeline.transformer.to(memory_format=torch.channels_last)
|
48 |
-
pipeline.vae.to(memory_format=torch.channels_last)
|
49 |
# quantize_(pipeline.vae, int8_weight_only())
|
50 |
pipeline.vae = torch.compile(pipeline.vae, fullgraph=True, mode="max-autotune")
|
51 |
-
|
52 |
-
|
53 |
for _ in range(2):
|
54 |
pipeline("cat", num_inference_steps=4)
|
55 |
|
|
|
42 |
transformer=transformer,
|
43 |
local_files_only=True,
|
44 |
torch_dtype=torch.bfloat16,
|
45 |
+
).to("cuda")
|
46 |
|
47 |
pipeline.transformer.to(memory_format=torch.channels_last)
|
48 |
+
# pipeline.vae.to(memory_format=torch.channels_last)
|
49 |
# quantize_(pipeline.vae, int8_weight_only())
|
50 |
pipeline.vae = torch.compile(pipeline.vae, fullgraph=True, mode="max-autotune")
|
51 |
+
|
|
|
52 |
for _ in range(2):
|
53 |
pipeline("cat", num_inference_steps=4)
|
54 |
|