diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2024-10-28 22:45:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-28 22:45:02 +0100 |
commit | 139ff56aeb1a6bbf0ed742f936a7a96bebccfa30 (patch) | |
tree | 4c5eca96b77c496c988b1b0ae08e25322996f5aa /candle-examples/examples | |
parent | 498bc2cdc962482bd0324074050ae706d9ed9a5f (diff) | |
download | candle-139ff56aeb1a6bbf0ed742f936a7a96bebccfa30.tar.gz candle-139ff56aeb1a6bbf0ed742f936a7a96bebccfa30.tar.bz2 candle-139ff56aeb1a6bbf0ed742f936a7a96bebccfa30.zip |
Reduce memory usage for sd 3.5. (#2582)
Diffstat (limited to 'candle-examples/examples')
-rw-r--r-- | candle-examples/examples/stable-diffusion-3/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/candle-examples/examples/stable-diffusion-3/main.rs b/candle-examples/examples/stable-diffusion-3/main.rs index 01b09101..d0bf4bb8 100644 --- a/candle-examples/examples/stable-diffusion-3/main.rs +++ b/candle-examples/examples/stable-diffusion-3/main.rs @@ -180,6 +180,8 @@ fn main() -> Result<()> { let (context, y) = triple.encode_text_to_embedding(prompt.as_str(), &device)?; let (context_uncond, y_uncond) = triple.encode_text_to_embedding(uncond_prompt.as_str(), &device)?; + // Drop the text model early to avoid using too much memory. + drop(triple); let context = Tensor::cat(&[context, context_uncond], 0)?; let y = Tensor::cat(&[y, y_uncond], 0)?; |