vllm VS lmdeploy

Compare vllm vs lmdeploy and see what are their differences.

vllm

A high-throughput and memory-efficient inference and serving engine for LLMs (by vllm-project)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
vllm lmdeploy
31 4
18,931 2,391
10.7% 12.6%
9.9 9.8
4 days ago 5 days ago
Python Python
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

vllm

Posts with mentions or reviews of vllm. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-09.
  • AI leaderboards are no longer useful. It's time to switch to Pareto curves
    1 project | news.ycombinator.com | 30 Apr 2024
    I guess the root cause of my claim is that OpenAI won't tell us whether or not GPT-3.5 is an MoE model, and I assumed it wasn't. Since GPT-3.5 is clearly nondeterministic at temp=0, I believed the nondeterminism was due to FPU stuff, and this effect was amplified with GPT-4's MoE. But if GPT-3.5 is also MoE then that's just wrong.

    What makes this especially tricky is that small models are truly 100% deterministic at temp=0 because the relative likelihoods are too coarse for FPU issues to be a factor. I had thought 3.5 was big enough that some of its token probabilities were too fine-grained for the FPU. But that's probably wrong.

    On the other hand, it's not just GPT, there are currently floating-point difficulties in vllm which significantly affect the determinism of any model run on it: https://github.com/vllm-project/vllm/issues/966 Note that a suggested fix is upcasting to float32. So it's possible that GPT-3.5 is using an especially low-precision float and introducing nondeterminism by saving money on compute costs.

    Sadly I do not have the money[1] to actually run a test to falsify any of this. It seems like this would be a good little research project.

    [1] Or the time, or the motivation :) But this stuff is expensive.

  • Mistral AI Launches New 8x22B Moe Model
    4 projects | news.ycombinator.com | 9 Apr 2024
    The easiest is to use vllm (https://github.com/vllm-project/vllm) to run it on a Couple of A100's, and you can benchmark this using this library (https://github.com/EleutherAI/lm-evaluation-harness)
  • FLaNK AI for 11 March 2024
    46 projects | dev.to | 11 Mar 2024
  • Show HN: We got fine-tuning Mistral-7B to not suck
    4 projects | news.ycombinator.com | 7 Feb 2024
    Great question! scheduling workloads onto GPUs in a way where VRAM is being utilised efficiently was quite the challenge.

    What we found was the IO latency for loading model weights into VRAM will kill responsiveness if you don't "re-use" sessions (i.e. where the model weights remain loaded and you run multiple inference sessions over the same loaded weights).

    Obviously projects like https://github.com/vllm-project/vllm exist but we needed to build out a scheduler that can run a fleet of GPUs for a matrix of text/image vs inference/finetune sessions.

    disclaimer: I work on Helix

  • Mistral CEO confirms 'leak' of new open source AI model nearing GPT4 performance
    5 projects | news.ycombinator.com | 31 Jan 2024
    FYI, vLLM also just added experiment multi-lora support: https://github.com/vllm-project/vllm/releases/tag/v0.3.0

    Also check out the new prefix caching, I see huge potential for batch processing purposes there!

  • VLLM Sacrifices Accuracy for Speed
    1 project | news.ycombinator.com | 23 Jan 2024
  • Easy, fast, and cheap LLM serving for everyone
    1 project | news.ycombinator.com | 17 Dec 2023
  • vllm
    1 project | news.ycombinator.com | 15 Dec 2023
  • Mixtral Expert Parallelism
    1 project | news.ycombinator.com | 15 Dec 2023
  • Mixtral 8x7B Support
    1 project | news.ycombinator.com | 11 Dec 2023

lmdeploy

Posts with mentions or reviews of lmdeploy. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-05-06.
  • FLaNK-AIM Weekly 06 May 2024
    45 projects | dev.to | 6 May 2024
  • AMD May Get Across the CUDA Moat
    8 projects | news.ycombinator.com | 6 Oct 2023
    I wouldn’t say ROCm code is “slower”, per se, but in practice that’s how it presents. References:

    https://github.com/InternLM/lmdeploy

    https://github.com/vllm-project/vllm

    https://github.com/OpenNMT/CTranslate2

    You know what’s missing from all of these and many more like them? Support for ROCm. This is all before you get to the really wildly performant stuff like Triton Inference Server, FasterTransformer, TensorRT-LLM, etc.

    ROCm is at the “get it to work stage” (see top comment, blog posts everywhere celebrating minor successes, etc). CUDA is at the “wring every last penny of performance out of this thing” stage.

    In terms of hardware support, I think that one is obvious. The U in CUDA originally stood for unified. Look at the list of chips supported by Nvidia drivers and CUDA releases. Literally anything from at least the past 10 years that has Nvidia printed on the box will just run CUDA code.

    One of my projects specifically targets Pascal up - when I thought even Pascal was a stretch. Cue my surprise when I got a report of someone casually firing it up on Maxwell when I was pretty certain there was no way it could work.

    A Maxwell laptop chip. It also runs just as well on an H100.

    THAT is hardware support.

  • Nvidia Introduces TensorRT-LLM for Accelerating LLM Inference on H100/A100 GPUs
    3 projects | news.ycombinator.com | 8 Sep 2023
    vLLM has healthy competition. Not affiliated but try lmdeploy:

    https://github.com/InternLM/lmdeploy

    In my testing it’s significantly faster and more memory efficient than vLLM when configured with AWQ int4 and int8 KV cache.

    If you look at the PRs, issues, etc you’ll see there are many more optimizations in the works. That said there are also PRs and issues for some of the lmdeploy tricks in vllm as well (AWQ, Triton Inference Server, etc).

    I’m really excited to see where these projects go!

  • Meta: Code Llama, an AI Tool for Coding
    18 projects | news.ycombinator.com | 24 Aug 2023

What are some alternatives?

When comparing vllm and lmdeploy you can also consider the following projects:

TensorRT - NVIDIA® TensorRT™ is an SDK for high-performance deep learning inference on NVIDIA GPUs. This repository contains the open source components of TensorRT.

llama.cpp - LLM inference in C/C++

CTranslate2 - Fast inference engine for Transformer models

llama-cpp-python - Python bindings for llama.cpp

Llama-2-Onnx

tritony - Tiny configuration for Triton Inference Server

smartcat

faster-whisper - Faster Whisper transcription with CTranslate2

seamless_communication - Foundational Models for State-of-the-Art Speech and Text Translation

text-generation-inference - Large Language Model Text Generation Inference

refact - WebUI for Fine-Tuning and Self-hosting of Open-Source Large Language Models for Coding