mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
Refactor and instead check if mps is being used, not availability
This commit is contained in:
parent
0b5dcb3d7c
commit
98ca437edf
@ -182,11 +182,7 @@ def register_buffer(self, name, attr):
|
|||||||
|
|
||||||
if type(attr) == torch.Tensor:
|
if type(attr) == torch.Tensor:
|
||||||
if attr.device != devices.device:
|
if attr.device != devices.device:
|
||||||
|
attr = attr.to(device=devices.device, dtype=(torch.float32 if devices.device.type == 'mps' else None))
|
||||||
if devices.has_mps():
|
|
||||||
attr = attr.to(device="mps", dtype=torch.float32)
|
|
||||||
else:
|
|
||||||
attr = attr.to(devices.device)
|
|
||||||
|
|
||||||
setattr(self, name, attr)
|
setattr(self, name, attr)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user