diff --git a/_posts/2024-10-10-optimizing-and-characterizing-high-throughput-low-latency-llm-inference.md b/_posts/2024-10-10-optimizing-and-characterizing-high-throughput-low-latency-llm-inference.md new file mode 100644 index 0000000..d575403 --- /dev/null +++ b/_posts/2024-10-10-optimizing-and-characterizing-high-throughput-low-latency-llm-inference.md @@ -0,0 +1,295 @@ +--- +layout: post +title: "Optimizing and Characterizing High-Throughput Low-Latency LLM Inference in MLCEngine" +date: 2024-10-10 12:00:00 -0400 +author: MLC Community +notitle: true +--- + +In June, we released [MLCEngine](https://blog.mlc.ai/2024/06/07/universal-LLM-deployment-engine-with-ML-compilation), a universal LLM deployment engine powered by machine learning compilation. +MLCEngine builds a single engine to enable LLM deployment across both cloud and edge devices, with full support for OpenAI API. + +Performance has been one of the key driving factors of our development. +Over the past two months, the [MLC community](https://github.com/mlc-ai/mlc-llm) has been working hard to improve the inference performance of server settings. +This post shares our results and learnings through the process. + +This post specifically focuses on the **high-throughput low-latency LLM inference** problem. +While many performance improvements focus on throughput-oriented settings, latency has become increasingly important for LLM engines. +We are particularly interested in scenarios where each user can get more than 50 tok/sec, 100 tok/sec or even higher, +while maintaining reasonable request concurrency (batch size) for higher throughput. +Additionally, we are interested in looking at the throughput-latency tradeoffs as we vary the request concurrency, providing users with more flexible choices in picking the setup that works best for them. + +In the remainder of the post, we first evaluate the latency and throughput of MLCEngine on Llama3 models. +We will then move on to a deeper analysis of the impact of different inference settings, +such as tensor parallelism and speculative decoding, on high-performance, low-latency inference. + +Our results on H100 show that MLCEngine brings **state-of-the-art performance on low-latency inference settings on multiple latency constraint thresholds**. +We will also provide a characterization of different inference system setup tradeoffs for the low-latency inference scenario. + +## Benchmark Setup + +The evaluation in this blogpost is done with Llama3 8B fp16 and 70B fp8 on a node with NVIDIA H100 SXM GPUs. +We use the [ShareGPT dataset](https://huggingface.co/datasets/anon8231489123/ShareGPT_Vicuna_unfiltered/blob/main/ShareGPT_V3_unfiltered_cleaned_split.json) to construct request inputs and set the output length. +In the evaluation, we fix the number of concurrent requests to be 1/4/8/10/16/20/30/64 and send 500 requests in total. +We measure the TPOT (time per output token, the average number of tokens received per second after the first token is received) of each request and the overall engine output token throughput. +We include more results and discussions in the appendix, for topics about the fixing of request rate, TTFT (time to first token), +90th percentile performance, and other input/output lengths. Instructions for reproducing the benchmark results are also provided in the appendix. + +To get a sense of how MLCEngine compares with current state-of-the-art solutions, we compared with SGLang (v0.3.1.post2) and vLLM (v0.6.1.post2). +The space of LLM inference is evolving fast so we also anticipate the frameworks to improve over time. +We will spend part of the blog discussing lessons learnt that could benefit the broader ML systems community. + +## Benchmark Throughput and Latency Trade-Off + +We begin with the basic results of the Llama3 8B fp16 model on 1 GPU and the 70B fp8 model on 4 GPUs with tensor parallelism. +The figures below show the TPOT (time per output token) and per-GPU output token throughput under different numbers of concurrent requests. +We normalize the throughput by the number of GPUs, as we can always add GPU replicas to scale the overall throughput. +These figures don’t include the additional optimizations (e.g., speculative decoding) that are discussed later, +and all the data points are collected with the same API endpoint with no special configuration tuning. + +
+ + +
+ +We can clearly see the tradeoff between latency and output throughput from the figures. +In a throughput-oriented setting, we usually pay attention to the right side of the plots, +as the request concurrency grows up, LLM engines can achieve higher throughput as concurrent requests are batched together for processing. + +When we have a low-latency goal (say we would like to have output tokens to be better than 100 tok/sec) in mind, +however, we need to instead look at the **upper left side** of the plots that fit into the latency target. +For example, in order to maintain 100 tok/s latency for Llama3 8B, MLCEngine can maintain about 30 concurrent users, +and get 3000 tok/s overall throughput. +Overall, we find MLCEngine can achieve state-of-the-art performance on the low-latency inference settings and continue to be effective as we scale to larger workloads. +In the upcoming subsection, we will discuss the techniques behind the scheme. + +### How do we achieve low latency? + +There are various factors contributing to the low latency of MLCEngine, and we are happy to share the lessons we’ve learnt with the community. + +**Fast decode attention.** +The computation time proportion of attention in the LLM inference decoding stage varies depending on the context length, +from less than 20% in short contexts of about 100 tokens to more than 50% in long contexts of thousands of tokens. +MLC integrates the state-of-the-art attention library [FlashInfer](https://github.com/flashinfer-ai/flashinfer) for serving to reduce the attention overhead. + +**Compiler-driven kernel generation and dispatch.** +As a compiler-based solution, MLCEngine supports leveraging GPU kernels from different sources. +For example, we dispatch GeMM operators to cuBLAS or CUTLASS kernels for large request concurrency, +while using the compiler-generated efficient GeMV kernels for the request concurrency of 1 and low request concurrency. + +**Dynamic shape-aware Memory planning and CUDA Graph.** +MLC supports a dynamic shape-aware memory planning compiler pass that can help statically allocate the required GPU memory +and thus avoid any runtime memory allocation/deallocation during inference. +We have CUDA Graph rewrite compiler pass that further allows us to leverage CUDA Graph and reduce GPU kernel launch overhead. +We find that CUDA Graph is especially important for multi-GPU use cases to reduce the variability. + +**CPU overhead reduction.** +MLC employs lots of effort to reduce the CPU overhead between consecutive rounds of decoding. +Importantly, we drive the engine loop with a standalone thread and leave all other frontend request +processes (e.g., tokenizer encode/decode, asynchronous HTTP receive/send, etc.) on the other thread. +This architecture allows for the asynchronous processing of request output and engine GPU computation. +Together with other CPU-side optimizations, the CPU overhead counts towards about 3% of batch decoding time. + + +## Impacts of Tensor Parallelism + +Data parallelism and tensor parallelism are two common approaches to scale LLM inference to more GPUs. +Data parallelism duplicates the model on the extra set of GPUs, doubles the overall system throughput, and keeps the output latency unchanged. +While tensor parallelism employs the extra GPUs to collectively serve the model, reduces serving latency but sacrifices some throughput. +To understand the impacts of tensor parallelism in different scenarios, we evaluate MLCEngine in different TP settings. +The y-axis is normalized by the number of GPUs so we can effectively compare the throughput latency tradeoff of higher TP setting and lower TP setting. + +Figures below show the evaluation results of Llama3 8B fp16 on 1/2 GPUs and Llama3 70B fp8 on 4/8 GPUs. + ++ + +
+ +In both figures, we can see a crossover point between the curves of two TP settings. +This means we would want to keep higher TP to enable low-latency serving and rely on data parallelism (and a smaller TP number) when the task is not as latency-sensitive. + +For the Llama3 8B case, if we would like to ensure the 100 tok/sec latency goal, +we can find that the 30 request concurrency point of TP=1 is slightly higher than the concurrency of 64 under TP=2. +However, as we aim for even lower latency, TP=2 becomes more preferable. +For example, if we further pick the latency threshold to TPOT of 7ms (equivalent to the output speed of 143 tok/s), +for TP=2 we can pick request concurrency 30, but for TP=1 we can only pick the request concurrency 8, with 45% lower output throughput. + +For Llama3 70B fp8, the crossover point of TP=4 and TP=8 is different. + +This study shows a complicated interaction when we pick tensor parallelism versus data parallelism with different latency and throughput targets, +and we need to systematically look at the latency throughput tradeoff when deciding the best deployment configuration. + + +## Impacts of Speculative Decoding + +Speculative decoding is a very useful technique in LLM inference to reduce the overall latency. +Speculative decoding leverages a smaller draft model (or combining draft proposal head into the model) to propose +multiple tokens and makes the target model verify a whole draft one at a time, to benefit from the batching effects of LLM inference. +One can think of speculative decoding as an approach to increase the effective batch size per concurrent user. +Most of the speculative decoding study so far has been focused on processing a single sequence, +while concurrency is still important in server settings as we would want to get reasonable throughput. + +We combine speculative decoding with the high-performance serving solution and study the impact of speculative decoding +through the Llama3 70B fp8 speculative decoding results with the draft model Llama3 8B fp8 and draft +length 3 (so that the effective length is 4 per verification step) for TP=4 and TP=8, and compare the results with normal batch decoding. + ++ + +
+ +As shown in the figures above, speculative decoding consistently brings lower latency when we look at low latency settings, +especially when we want the output speed to go beyond 70 tok/s. +In the current benchmarking scenario, TP=4 offers better throughput tradeoffs per GPU, while TP=8 offers the lowest latency possible. +As the request concurrency grows larger, the normal batch decoding gradually shifts from memory bound to compute bound, marginalizing the benefit of speculative decoding. + +It is worth noting that the benefit of speculative decoding also depends on the acceptance rate of speculation, which may vary across different datasets. + +**Efficient Speculative Decoding System with Continuous Batching.** +It is worthwhile noting that we need to deal with compound system complexity when combining speculative decoding together with continuous batching. +The LLM engine overhead reduction becomes extremely important as the draft model is still running in a tight loop and can take a strong hit from the engine overhead. +We also need to carefully manage the draft logits and avoid dynamic memory allocation when possible. +Finally, we need to build a specialized kernel to verify all the batched proposals at once without turning back to the CPU. + + +## Discussion and Future Opportunities + +In this blogpost, we study the tradeoffs of LLM inference in high-throughput low-latency scenarios. +It is important to note that we did not yet cover other advanced features in MLCEngine, +such as prefix caching (affecting common system prompts), structured constraint overhead (for JSON schema generation), +and advanced speculation methods such as Eagle and Medusa. +The compounding effects of these elements can depend on the scenarios we are looking at as well as the effectiveness of the corresponding system solutions. +We will leave these studies in future posts. + + +## Appendix + +### Fixing the request rate + +The evaluation so far focuses on fixing the request concurrency, +which precisely reveals the underlying LLM engine performance on various workload heaviness. +Fixing the request rate is another common benchmark workload. +When running LLM engines with a fixed request rate, the underlying batch size of the engines varies over time. +Benchmarking with fixed request rates provides more comprehensive results compared to fixing request concurrency, which is more granular. +The figures below show the results under different fixed request rates (1/2/4/8/16), where MLCEngine delivers the state-of-the-art aligned latency. + ++ + +
+ +### Time to first token + +TTFT (time to first token) is an important metric in LLM inference. +It refers to the time in seconds between sending a request to the API and receiving the first token of the response. +Usually, the TTFT metric reveals the efficiency of request scheduling and input prefilling of an LLM engine. +The figures below show the measured average TTFT under different request concurrency for the Llama3 8B fp16 and 70B fp8 models. +MLCEngine has comparable aligned TTFT in general across various request concurrency. + ++ + +
+ +### 90th percentile performance + +The tail performance (TPOT, TTFT) is also an important metric that people care about, in addition to the average performance. +The two figures below show the p90 TPOT and TTFT results for Llama3 70B fp8 under different request concurrency. + ++ + +
+ +The two figures below show the p90 TPOT and TTFT under different fixed request rates. + ++ + +
+ +### Different input/output lengths + +In addition to reusing the input and output lengths from the ShareGPT dataset, +we also evaluate LLM engines with other fixed input/output lengths. +The two figures below show the TPOT and TTFT results when each request has a fixed input length of 100 and an output length of 500 for Llama3 70B fp8. + ++ + +
+ +The two figures below show the results for the fixed input length of 1000 and output length of 500. + ++ + +
+ +### Benchmark instructions + +```bash +# Install MLC-LLM +python3 -m pip install --pre -U -f https://mlc.ai/wheels mlc-llm-cu123 mlc-ai-cu123 + +export SERVER_ADDR="127.0.0.1" +export SERVER_PORT="8000" + +# Llama3 8B +## Launch a server +python3 -m mlc_llm serve HF://mlc-ai/Llama-3-8B-Instruct-q0f16-MLC \ + --mode server --host $SERVER_ADDR --port $SERVER_PORT --device cuda \ + --prefix-cache-mode disable --enable-debug +python3 -m sglang.launch_server --model meta-llama/Meta-Llama-3-8B-Instruct \ + --host $SERVER_ADDR --port $SERVER_PORT --dtype float16 \ + --disable-radix-cache --enable-torch-compile --trust-remote-code +python3 -m vllm.entrypoints.openai.api_server --model meta-llama/Meta-Llama-3-8B-Instruct \ + --host $SERVER_ADDR --port $SERVER_PORT --dtype float16 \ + --disable-log-requests --trust-remote-code --num-scheduler-steps 10 + +## Run benchmark +wget https://huggingface.co/datasets/anon8231489123/ShareGPT_Vicuna_unfiltered/resolve/main/ShareGPT_V3_unfiltered_cleaned_split.json +export SHAREGPT_PATH=$PWD/ShareGPT_V3_unfiltered_cleaned_split.json +export MODEL_PATH=/path/to/Meta-Llama-3-8B-Instruct +export API_ENDPOINT=mlc # Or "sglang"/"vllm" +python3 -m mlc_llm.bench --api-endpoint $API_ENDPOINT --dataset sharegpt --dataset-path $SHAREGPT_PATH \ + --tokenizer $MODEL_PATH --num-request 500 --num-gpus 1 \ + --num-concurrent-requests 1,4,8,10,16,20,30,64 \ + --temperature 0.6 --top-p 0.9 --ignore-eos --apply-chat-template \ + --host $SERVER_ADDR --port $SERVER_PORT + + + +# Llama3 70B +## Compile model for MLC +git clone https://huggingface.co/mlc-ai/Llama-3-70B-Instruct-fp8-MLC +### This step may take about 10 min. +python3 -m mlc_llm compile ./Llama-3-70B-Instruct-fp8-MLC \ + --device nvidia/nvidia-h100 --opt O3 --overrides "tensor_parallel_shards=4" \ + -o ./Llama-3-70B-Instruct-fp8-MLC/lib.so + +## Launch a server +python3 -m mlc_llm serve ./Llama-3-70B-Instruct-fp8-MLC --model-lib ./Llama-3-70B-Instruct-fp8-MLC/lib.so \ + --mode server --host $SERVER_ADDR --port $SERVER_PORT --device cuda \ + --prefix-cache-mode disable --enable-debug +python3 -m sglang.launch_server --model neuralmagic/Meta-Llama-3-70B-Instruct-FP8 \ + --host $SERVER_ADDR --port $SERVER_PORT --dtype float16 \ + --disable-radix-cache --trust-remote-code --tp 4 +python3 -m vllm.entrypoints.openai.api_server --model neuralmagic/Meta-Llama-3-70B-Instruct-FP8 \ + --host $SERVER_ADDR --port $SERVER_PORT --dtype float16 \ + --disable-log-requests --trust-remote-code --tensor-parallel-size 4 --num-scheduler-steps 10 + +## Run benchmark +export SHAREGPT_PATH=$PWD/ShareGPT_V3_unfiltered_cleaned_split.json +export MODEL_PATH=/path/to/Meta-Llama-3-70B-Instruct-FP8 +export API_ENDPOINT=mlc # Or "sglang"/"vllm" +python3 -m mlc_llm.bench --api-endpoint $API_ENDPOINT --dataset sharegpt --dataset-path $SHAREGPT_PATH \ + --tokenizer $MODEL_PATH --num-request 500 --num-gpus 4 \ + --num-concurrent-requests 1,4,8,10,16,20,30,64 \ + --temperature 0.6 --top-p 0.9 --ignore-eos --apply-chat-template \ + --host $SERVER_ADDR --port $SERVER_PORT +``` + + + diff --git a/img/mlc-engine-perf/70b-tp4-spec-tpot-concur.png b/img/mlc-engine-perf/70b-tp4-spec-tpot-concur.png new file mode 100644 index 0000000..f252b14 Binary files /dev/null and b/img/mlc-engine-perf/70b-tp4-spec-tpot-concur.png differ diff --git a/img/mlc-engine-perf/70b-tp4-tp8-tpot-concur.png b/img/mlc-engine-perf/70b-tp4-tp8-tpot-concur.png new file mode 100644 index 0000000..eca3887 Binary files /dev/null and b/img/mlc-engine-perf/70b-tp4-tp8-tpot-concur.png differ diff --git a/img/mlc-engine-perf/70b-tp4-tpot-concur-in100.png b/img/mlc-engine-perf/70b-tp4-tpot-concur-in100.png new file mode 100644 index 0000000..694e20c Binary files /dev/null and b/img/mlc-engine-perf/70b-tp4-tpot-concur-in100.png differ diff --git a/img/mlc-engine-perf/70b-tp4-tpot-concur-in1000.png b/img/mlc-engine-perf/70b-tp4-tpot-concur-in1000.png new file mode 100644 index 0000000..77faab3 Binary files /dev/null and b/img/mlc-engine-perf/70b-tp4-tpot-concur-in1000.png differ diff --git a/img/mlc-engine-perf/70b-tp4-tpot-concur-p90.png b/img/mlc-engine-perf/70b-tp4-tpot-concur-p90.png new file mode 100644 index 0000000..d7c5f87 Binary files /dev/null and b/img/mlc-engine-perf/70b-tp4-tpot-concur-p90.png differ diff --git a/img/mlc-engine-perf/70b-tp4-tpot-concur.png b/img/mlc-engine-perf/70b-tp4-tpot-concur.png new file mode 100644 index 0000000..51bff37 Binary files /dev/null and b/img/mlc-engine-perf/70b-tp4-tpot-concur.png differ diff --git a/img/mlc-engine-perf/70b-tp4-tpot-reqrate-p90.png b/img/mlc-engine-perf/70b-tp4-tpot-reqrate-p90.png new file mode 100644 index 0000000..5238f6a Binary files /dev/null and b/img/mlc-engine-perf/70b-tp4-tpot-reqrate-p90.png differ diff --git a/img/mlc-engine-perf/70b-tp4-tpot-reqrate.png b/img/mlc-engine-perf/70b-tp4-tpot-reqrate.png new file mode 100644 index 0000000..2894383 Binary files /dev/null and b/img/mlc-engine-perf/70b-tp4-tpot-reqrate.png differ diff --git a/img/mlc-engine-perf/70b-tp4-ttft-concur-in100.png b/img/mlc-engine-perf/70b-tp4-ttft-concur-in100.png new file mode 100644 index 0000000..326f332 Binary files /dev/null and b/img/mlc-engine-perf/70b-tp4-ttft-concur-in100.png differ diff --git a/img/mlc-engine-perf/70b-tp4-ttft-concur-in1000.png b/img/mlc-engine-perf/70b-tp4-ttft-concur-in1000.png new file mode 100644 index 0000000..e509f5b Binary files /dev/null and b/img/mlc-engine-perf/70b-tp4-ttft-concur-in1000.png differ diff --git a/img/mlc-engine-perf/70b-tp4-ttft-concur-p90.png b/img/mlc-engine-perf/70b-tp4-ttft-concur-p90.png new file mode 100644 index 0000000..03058c9 Binary files /dev/null and b/img/mlc-engine-perf/70b-tp4-ttft-concur-p90.png differ diff --git a/img/mlc-engine-perf/70b-tp4-ttft-concur.png b/img/mlc-engine-perf/70b-tp4-ttft-concur.png new file mode 100644 index 0000000..1396e3e Binary files /dev/null and b/img/mlc-engine-perf/70b-tp4-ttft-concur.png differ diff --git a/img/mlc-engine-perf/70b-tp4-ttft-reqrate-p90.png b/img/mlc-engine-perf/70b-tp4-ttft-reqrate-p90.png new file mode 100644 index 0000000..0fb41fc Binary files /dev/null and b/img/mlc-engine-perf/70b-tp4-ttft-reqrate-p90.png differ diff --git a/img/mlc-engine-perf/70b-tp8-spec-tpot-concur.png b/img/mlc-engine-perf/70b-tp8-spec-tpot-concur.png new file mode 100644 index 0000000..aeeb50a Binary files /dev/null and b/img/mlc-engine-perf/70b-tp8-spec-tpot-concur.png differ diff --git a/img/mlc-engine-perf/8b-tp1-tp2-tpot-concur.png b/img/mlc-engine-perf/8b-tp1-tp2-tpot-concur.png new file mode 100644 index 0000000..3116921 Binary files /dev/null and b/img/mlc-engine-perf/8b-tp1-tp2-tpot-concur.png differ diff --git a/img/mlc-engine-perf/8b-tp1-tpot-concur.png b/img/mlc-engine-perf/8b-tp1-tpot-concur.png new file mode 100644 index 0000000..55eea15 Binary files /dev/null and b/img/mlc-engine-perf/8b-tp1-tpot-concur.png differ diff --git a/img/mlc-engine-perf/8b-tp1-tpot-reqrate.png b/img/mlc-engine-perf/8b-tp1-tpot-reqrate.png new file mode 100644 index 0000000..dad0491 Binary files /dev/null and b/img/mlc-engine-perf/8b-tp1-tpot-reqrate.png differ diff --git a/img/mlc-engine-perf/8b-tp1-ttft-concur.png b/img/mlc-engine-perf/8b-tp1-ttft-concur.png new file mode 100644 index 0000000..bcccbd8 Binary files /dev/null and b/img/mlc-engine-perf/8b-tp1-ttft-concur.png differ