mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-04-28 15:59:07 +08:00
Fix inverted option issue
I'm pretty sure I was sleepy while implementing this
This commit is contained in:
parent
c40be2252a
commit
c0725ba2d0
@ -337,7 +337,7 @@ def hypertile_context_vae(model:nn.Module, aspect_ratio:float, tile_size:int, op
|
|||||||
"""
|
"""
|
||||||
Returns context manager for VAE
|
Returns context manager for VAE
|
||||||
"""
|
"""
|
||||||
enabled = not opts.hypertile_split_vae_attn
|
enabled = opts.hypertile_split_vae_attn
|
||||||
swap_size = opts.hypertile_swap_size_vae
|
swap_size = opts.hypertile_swap_size_vae
|
||||||
max_depth = opts.hypertile_max_depth_vae
|
max_depth = opts.hypertile_max_depth_vae
|
||||||
tile_size_max = opts.hypertile_max_tile_vae
|
tile_size_max = opts.hypertile_max_tile_vae
|
||||||
@ -355,7 +355,7 @@ def hypertile_context_unet(model:nn.Module, aspect_ratio:float, tile_size:int, o
|
|||||||
"""
|
"""
|
||||||
Returns context manager for U-Net
|
Returns context manager for U-Net
|
||||||
"""
|
"""
|
||||||
enabled = not opts.hypertile_split_unet_attn
|
enabled = opts.hypertile_split_unet_attn
|
||||||
swap_size = opts.hypertile_swap_size_unet
|
swap_size = opts.hypertile_swap_size_unet
|
||||||
max_depth = opts.hypertile_max_depth_unet
|
max_depth = opts.hypertile_max_depth_unet
|
||||||
tile_size_max = opts.hypertile_max_tile_unet
|
tile_size_max = opts.hypertile_max_tile_unet
|
||||||
|
Loading…
x
Reference in New Issue
Block a user