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/swinir_model.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/swinir_model.py')
-rw-r--r-- | modules/swinir_model.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/swinir_model.py b/modules/swinir_model.py index facd262d..483eabd4 100644 --- a/modules/swinir_model.py +++ b/modules/swinir_model.py @@ -13,10 +13,6 @@ from modules.swinir_model_arch import SwinIR as net from modules.swinir_model_arch_v2 import Swin2SR as net2 from modules.upscaler import Upscaler, UpscalerData -precision_scope = ( - torch.autocast if cmd_opts.precision == "autocast" else contextlib.nullcontext -) - class UpscalerSwinIR(Upscaler): def __init__(self, dirname): @@ -112,7 +108,7 @@ def upscale( img = np.moveaxis(img, 2, 0) / 255 img = torch.from_numpy(img).float() img = img.unsqueeze(0).to(devices.device_swinir) - with torch.no_grad(), precision_scope("cuda"): + with torch.no_grad(), devices.autocast(): _, _, h_old, w_old = img.size() h_pad = (h_old // window_size + 1) * window_size - h_old w_pad = (w_old // window_size + 1) * window_size - w_old |