aboutsummaryrefslogtreecommitdiff
path: root/modules/interrogate.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2022-12-03 10:19:51 +0300
committerGitHub <noreply@github.com>2022-12-03 10:19:51 +0300
commitc9a2cfdf2a53d37c2de1908423e4f548088667ef (patch)
treeeabdca1b7665e0ee00f130e9f8544ffd23e474a2 /modules/interrogate.py
parent39541d7725bc42f456a604b07c50aba503a5a09a (diff)
parent5cd5a672f7889dcc018c3873ec557d645ebe35d0 (diff)
Merge branch 'master' into racecond_fix
Diffstat (limited to 'modules/interrogate.py')
-rw-r--r--modules/interrogate.py3
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)