Commit ae875436 authored by comfyanonymous's avatar comfyanonymous
Browse files

Merge branch 'cast_intel' of https://github.com/simonlui/ComfyUI

parents fd93c759 eec449ca
......@@ -488,6 +488,8 @@ def cast_to_device(tensor, device, dtype, copy=False):
elif tensor.dtype == torch.bfloat16:
if hasattr(device, 'type') and device.type.startswith("cuda"):
device_supports_cast = True
elif is_intel_xpu():
device_supports_cast = True
if device_supports_cast:
if copy:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment