"...text-generation-inference.git" did not exist on "3b0c979efcccd8ca51f59f1f982bfbbc842d06c9"
Unverified Commit 95e0c375 authored by Radamés Ajna's avatar Radamés Ajna Committed by GitHub
Browse files

Fix small typo (#8498)

parent 6cf0be5d
...@@ -186,7 +186,7 @@ pipe.transformer = torch.compile(pipe.transformer, mode="max-autotune", fullgrap ...@@ -186,7 +186,7 @@ pipe.transformer = torch.compile(pipe.transformer, mode="max-autotune", fullgrap
pipe.vae.decode = torch.compile(pipe.vae.decode, mode="max-autotune", fullgraph=True) pipe.vae.decode = torch.compile(pipe.vae.decode, mode="max-autotune", fullgraph=True)
# Warm Up # Warm Up
prompt = "a photo of a cat holding a sign that says hello world", prompt = "a photo of a cat holding a sign that says hello world"
for _ in range(3): for _ in range(3):
_ = pipe(prompt=prompt, generator=torch.manual_seed(1)) _ = pipe(prompt=prompt, generator=torch.manual_seed(1))
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment