Update devices.py

This commit is contained in:
FNSpd
2023-03-24 23:08:30 +04:00
committed by GitHub
parent 280ed8f00f
commit a9eab236d7

View File

@@ -110,7 +110,7 @@ def autocast(disable=False):
if disable:
return contextlib.nullcontext()
if dtype == torch.float32 or shared.cmd_opts.precision == "full" or shared.cmd_opts.upcast_sampling:
if dtype == torch.float32 or shared.cmd_opts.precision == "full":
return contextlib.nullcontext()
return torch.autocast("cuda")