Browse Source

Slightly faster lora applying.

pull/2207/head
comfyanonymous 12 months ago
parent
commit
2db86b4676
  1. 8
      comfy/model_management.py

8
comfy/model_management.py

@ -550,12 +550,12 @@ def cast_to_device(tensor, device, dtype, copy=False):
if device_supports_cast:
if copy:
if tensor.device == device:
return tensor.to(dtype, copy=copy)
return tensor.to(device, copy=copy).to(dtype)
return tensor.to(dtype, copy=copy, non_blocking=True)
return tensor.to(device, copy=copy, non_blocking=True).to(dtype, non_blocking=True)
else:
return tensor.to(device).to(dtype)
return tensor.to(device, non_blocking=True).to(dtype, non_blocking=True)
else:
return tensor.to(dtype).to(device, copy=copy)
return tensor.to(device, dtype, copy=copy, non_blocking=True)
def xformers_enabled():
global directml_enabled

Loading…
Cancel
Save