summaryrefslogtreecommitdiff
path: root/candle-examples/examples
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2024-10-28 22:45:02 +0100
committerGitHub <noreply@github.com>2024-10-28 22:45:02 +0100
commit139ff56aeb1a6bbf0ed742f936a7a96bebccfa30 (patch)
tree4c5eca96b77c496c988b1b0ae08e25322996f5aa /candle-examples/examples
parent498bc2cdc962482bd0324074050ae706d9ed9a5f (diff)
downloadcandle-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.rs2
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)?;