diff options
author | brkirch <brkirch@users.noreply.github.com> | 2022-11-29 02:36:35 +0000 |
---|---|---|
committer | brkirch <brkirch@users.noreply.github.com> | 2022-11-30 15:33:42 +0000 |
commit | 4d5f1691dda971ec7b461dd880426300fd54ccee (patch) | |
tree | c9ebed9f119ae66c13e716ff867a8c20108389a9 /modules/hypernetworks | |
parent | 21effd629d0fdfdbbff2b20a9f4a3767e7e8bd33 (diff) | |
download | stable-diffusion-webui-gfx803-4d5f1691dda971ec7b461dd880426300fd54ccee.tar.gz stable-diffusion-webui-gfx803-4d5f1691dda971ec7b461dd880426300fd54ccee.tar.bz2 stable-diffusion-webui-gfx803-4d5f1691dda971ec7b461dd880426300fd54ccee.zip |
Use devices.autocast instead of torch.autocast
Diffstat (limited to 'modules/hypernetworks')
-rw-r--r-- | modules/hypernetworks/hypernetwork.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/hypernetworks/hypernetwork.py b/modules/hypernetworks/hypernetwork.py index 8466887f..eb5ae372 100644 --- a/modules/hypernetworks/hypernetwork.py +++ b/modules/hypernetworks/hypernetwork.py @@ -495,7 +495,7 @@ def train_hypernetwork(hypernetwork_name, learn_rate, batch_size, gradient_step, if shared.state.interrupted:
break
- with torch.autocast("cuda"):
+ with devices.autocast():
x = batch.latent_sample.to(devices.device, non_blocking=pin_memory)
if tag_drop_out != 0 or shuffle_tags:
shared.sd_model.cond_stage_model.to(devices.device)
|