diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-12-03 09:58:08 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-03 09:58:08 +0300 |
commit | a2feaa95fc0c4c94131eb75b5b1bc0eaa1696551 (patch) | |
tree | a7be0e8b6849aae24f7f6c7879f7ddf43d118425 /modules/interrogate.py | |
parent | c7af672186ec09a514f0e78aa21155264e56c130 (diff) | |
parent | 0fddb4a1c06a6e2122add7eee3b001a6d473baee (diff) |
Merge pull request #5194 from brkirch/autocast-and-mps-randn-fixes
Use devices.autocast() and fix MPS randn issues
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)
|