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/interrogate.py | |
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/interrogate.py')
-rw-r--r-- | modules/interrogate.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/interrogate.py b/modules/interrogate.py index 9769aa34..40c6b082 100644 --- a/modules/interrogate.py +++ b/modules/interrogate.py @@ -148,8 +148,7 @@ class InterrogateModels: clip_image = self.clip_preprocess(pil_image).unsqueeze(0).type(self.dtype).to(devices.device_interrogate)
- precision_scope = torch.autocast if shared.cmd_opts.precision == "autocast" else contextlib.nullcontext
- with torch.no_grad(), precision_scope("cuda"):
+ with torch.no_grad(), devices.autocast():
image_features = self.clip_model.encode_image(clip_image).type(self.dtype)
image_features /= image_features.norm(dim=-1, keepdim=True)
|