Nvidia Dynamo: A Datacenter Scale Distributed Inference Serving Framework
1–10 of 44 posts
Re: Nvidia Dynamo: A Datacenter Scale Distributed Inference Serving Framework
#2Re: Nvidia Dynamo: A Datacenter Scale Distributed Inference Serving Framework
#3As someone who spent the better part of a year trying to get various Nvidia inference products to work _at all_ even with a direct line to their developers, I will simply say "beware".
Re: Nvidia Dynamo: A Datacenter Scale Distributed Inference Serving Framework
#4As someone who spent the better part of a year trying to get various Nvidia inference products to work _at all_ even with a direct line to their developers, I will simply say "beware".
Can you share some of your wisdom on setting up a scalable inference infrastructure?
Re: Nvidia Dynamo: A Datacenter Scale Distributed Inference Serving Framework
#5Omg, a team that knows how to selectively use tech as needed. Looking at the Rust web developers in corner.
Re: Nvidia Dynamo: A Datacenter Scale Distributed Inference Serving Framework
#6Earlier quoted context omitted.
Can you share some of your wisdom on setting up a scalable inference infrastructure?
Use Ray Serve. https://docs.ray.io/en/latest/serve/index.html
Re: Nvidia Dynamo: A Datacenter Scale Distributed Inference Serving Framework
#7Earlier quoted context omitted.
Use Ray Serve. https://docs.ray.io/en/latest/serve/index.html
As someone who has run LLMs in production, using Ray is probably the worst idea. It's not optimized for language models, and is extremely slow. There's no KV-caching, model parallelism, and other basic table stakes features that are offered by Dynamo or other open source inference frameworks. Useful only if you have Use SGLang, vLLM, or text-generation-inference instead.
Re: Nvidia Dynamo: A Datacenter Scale Distributed Inference Serving Framework
#8Re: Nvidia Dynamo: A Datacenter Scale Distributed Inference Serving Framework
#9Re: Nvidia Dynamo: A Datacenter Scale Distributed Inference Serving Framework
#10Earlier quoted context omitted.
Use Ray Serve. https://docs.ray.io/en/latest/serve/index.html
As someone who has run LLMs in production, using Ray is probably the worst idea. It's not optimized for language models, and is extremely slow. There's no KV-caching, model parallelism, and other basic table stakes features that are offered by Dynamo or other open source inference frameworks. Useful only if you have Use SGLang, vLLM, or text-generation-inference instead.
Good for the goose, good for the gander...