mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Enable upscaling on m1 (#474)
This commit is contained in:
parent
0881d429f2
commit
defafc0e8e
@ -75,13 +75,11 @@ def run_gfpgan(image, strength, seed, upsampler_scale=4):
|
|||||||
|
|
||||||
def _load_gfpgan_bg_upsampler(bg_upsampler, upsampler_scale, bg_tile=400):
|
def _load_gfpgan_bg_upsampler(bg_upsampler, upsampler_scale, bg_tile=400):
|
||||||
if bg_upsampler == 'realesrgan':
|
if bg_upsampler == 'realesrgan':
|
||||||
if not torch.cuda.is_available(): # CPU
|
if not torch.cuda.is_available(): # CPU or MPS on M1
|
||||||
warnings.warn(
|
use_half_precision = False
|
||||||
'The unoptimized RealESRGAN is slow on CPU. We do not use it. '
|
|
||||||
'If you really want to use it, please modify the corresponding codes.'
|
|
||||||
)
|
|
||||||
bg_upsampler = None
|
|
||||||
else:
|
else:
|
||||||
|
use_half_precision = True
|
||||||
|
|
||||||
model_path = {
|
model_path = {
|
||||||
2: 'https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.1/RealESRGAN_x2plus.pth',
|
2: 'https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.1/RealESRGAN_x2plus.pth',
|
||||||
4: 'https://github.com/xinntao/Real-ESRGAN/releases/download/v0.1.0/RealESRGAN_x4plus.pth',
|
4: 'https://github.com/xinntao/Real-ESRGAN/releases/download/v0.1.0/RealESRGAN_x4plus.pth',
|
||||||
@ -119,8 +117,8 @@ def _load_gfpgan_bg_upsampler(bg_upsampler, upsampler_scale, bg_tile=400):
|
|||||||
tile=bg_tile,
|
tile=bg_tile,
|
||||||
tile_pad=10,
|
tile_pad=10,
|
||||||
pre_pad=0,
|
pre_pad=0,
|
||||||
half=True,
|
half=use_half_precision,
|
||||||
) # need to set False in CPU mode
|
)
|
||||||
else:
|
else:
|
||||||
bg_upsampler = None
|
bg_upsampler = None
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user