From 7af95008b8b545b6f0db0610dd922970dc5bf096 Mon Sep 17 00:00:00 2001 From: Aptronymist <108482020+Aptronymist@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:54:49 -0400 Subject: [PATCH] Update locale_en.json updated with diffusers backend optimization options --- html/locale_en.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/html/locale_en.json b/html/locale_en.json index dbb1b27b8..a122685ce 100644 --- a/html/locale_en.json +++ b/html/locale_en.json @@ -561,11 +561,11 @@ {"id":"","label":"Move refiner model to CPU when not in use","localized":"","hint":""}, {"id":"","label":"Use model EMA weights when possible","localized":"","hint":""}, {"id":"","label":"Generator device","localized":"","hint":""}, - {"id":"","label":"Enable sequential CPU offload","localized":"","hint":""}, - {"id":"","label":"Enable model CPU offload","localized":"","hint":""}, - {"id":"","label":"Enable VAE slicing","localized":"","hint":""}, - {"id":"","label":"Enable VAE tiling","localized":"","hint":""}, - {"id":"","label":"Enable attention slicing","localized":"","hint":""} + {"id":"","label":"Enable sequential CPU offload","localized":"","hint":"Reduces GPU memory usage by transferring weights to the CPU. Increases inference time approximately 10%. Use with Enable Attention slicing for minimal memory consumption"}, + {"id":"","label":"Enable model CPU offload","localized":"","hint":"Transferring of entire models to the GPU, negligible impact on inference time while still providing some memory savings. Use with Enable Attention slicing for additional memory savings"}, + {"id":"","label":"Enable VAE slicing","localized":"","hint":"Decodes batch latents one image at a time with limited VRAM. Small performance boost in VAE decode on multi-image batches. Use with Enable Attention slicing"}, + {"id":"","label":"Enable VAE tiling","localized":"","hint":"Divide large images into overlapping tiles with limited VRAM. Might result in a minor increase in processing time. Use with Enable Attention Slicing"}, + {"id":"","label":"Enable attention slicing","localized":"","hint":"Performs attention computation in steps instead of all at once. 10% slower inference times. Greatly reduces memory usage. Best used, period"} ], "scripts": [ {"id":"","label":"Script","localized":"","hint":""}, @@ -622,4 +622,4 @@ {"id":"","label":"None","localized":"","hint":"Do not do anything special"}, {"id":"","label":"Grid margins","localized":"","hint":""} ] -} \ No newline at end of file +}