jokerbit commited on
Commit
fa81873
·
verified ·
1 Parent(s): e4f08b5

Upload src/pipeline.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. 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
- pipeline.to("cuda")
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