mirror of
https://github.com/openvinotoolkit/stable-diffusion-webui.git
synced 2024-12-14 06:28:12 +03:00
send weights to target device instead of CPU memory
This commit is contained in:
parent
86221269f9
commit
0815c45bcd
@ -579,7 +579,7 @@ def load_model(checkpoint_info=None, already_loaded_state_dict=None):
|
||||
|
||||
timer.record("create model")
|
||||
|
||||
with sd_disable_initialization.LoadStateDictOnMeta(state_dict, devices.cpu):
|
||||
with sd_disable_initialization.LoadStateDictOnMeta(state_dict, devices.device):
|
||||
load_model_weights(sd_model, checkpoint_info, state_dict, timer)
|
||||
timer.record("load weights from state dict")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user