mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-01-06 15:15:05 +08:00
Remove extra .to(device)
This commit is contained in:
parent
abfa22c16f
commit
a5106a7cdc
@ -56,7 +56,6 @@ class UpscalerScuNET(modules.upscaler.Upscaler):
|
||||
img = torch.from_numpy(img).float()
|
||||
img = img.unsqueeze(0).to(device)
|
||||
|
||||
img = img.to(device)
|
||||
with torch.no_grad():
|
||||
output = model(img)
|
||||
output = output.squeeze().float().cpu().clamp_(0, 1).numpy()
|
||||
|
Loading…
Reference in New Issue
Block a user