How to reduce inference time in Diffusers on consumer GPUs? #11795
Replies: 2 comments
-
There are several ways you can speed up inference in Diffuser on the user's GPU:
pipe = StableDiffusionPipeline.from_pretrained("model_name", torch_dtype=torch.float16)
pipe.to("cuda")
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm running Diffusers on a standard consumer GPU (RTX 3060 / 6GB).
What are some practical ways to optimize inference speed without sacrificing too much quality?
Beta Was this translation helpful? Give feedback.
All reactions