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