Eugeoter commited on
Commit
e150b92
·
1 Parent(s): fc2d564
Files changed (1) hide show
  1. utils/tools.py +2 -2
utils/tools.py CHANGED
@@ -112,11 +112,11 @@ def get_pipeline(
112
 
113
  pipeline.scheduler = UniPCMultistepScheduler.from_config(pipeline.scheduler.config)
114
  pipeline.set_progress_bar_config()
115
- pipeline = pipeline.to(device, dtype=torch.float16)
116
 
117
  if lora_path is not None:
118
  pipeline.load_lora_weights(lora_path)
119
- if enable_xformers_memory_efficient_attention:
120
  pipeline.enable_xformers_memory_efficient_attention()
121
 
122
  return pipeline
 
112
 
113
  pipeline.scheduler = UniPCMultistepScheduler.from_config(pipeline.scheduler.config)
114
  pipeline.set_progress_bar_config()
115
+ pipeline = pipeline.to(device, dtype=torch.float16 if torch.cuda.is_available() else torch.float32)
116
 
117
  if lora_path is not None:
118
  pipeline.load_lora_weights(lora_path)
119
+ if enable_xformers_memory_efficient_attention and torch.cuda.is_available():
120
  pipeline.enable_xformers_memory_efficient_attention()
121
 
122
  return pipeline