jokerbit commited on
Commit
f0c9b97
·
verified ·
1 Parent(s): a5f3be1

Update src/pipeline.py

Browse files
Files changed (1) hide show
  1. src/pipeline.py +2 -3
src/pipeline.py CHANGED
@@ -40,10 +40,9 @@ def load_pipeline() -> Pipeline:
40
  transformer=transformer,
41
  local_files_only=True,
42
  torch_dtype=torch.bfloat16,
43
- )
44
  quantize_(pipeline.vae, int8_weight_only())
45
- pipeline.to(memory_format=torch.channels_last, device="cuda")
46
- # pipeline.transformer.to(memory_format=torch.channels_last)
47
 
48
  PROMPT = 'semiconformity, peregrination, quip, twineless, emotionless, tawa, depickle'
49
  with torch.inference_mode():
 
40
  transformer=transformer,
41
  local_files_only=True,
42
  torch_dtype=torch.bfloat16,
43
+ ).to("cuda")
44
  quantize_(pipeline.vae, int8_weight_only())
45
+ pipeline.transformer.to(memory_format=torch.channels_last)
 
46
 
47
  PROMPT = 'semiconformity, peregrination, quip, twineless, emotionless, tawa, depickle'
48
  with torch.inference_mode():