[Docs] Add more details to profiling docs (#3221)
This commit is contained in:
@@ -15,51 +15,8 @@
|
|||||||
python3 -m sglang.bench_serving --backend sglang --num-prompt 10
|
python3 -m sglang.bench_serving --backend sglang --num-prompt 10
|
||||||
```
|
```
|
||||||
|
|
||||||
## Profile with Nsight
|
|
||||||
0. Prerequisite
|
|
||||||
```bash
|
|
||||||
# install nsys
|
|
||||||
# https://docs.nvidia.com/nsight-systems/InstallationGuide/index.html
|
|
||||||
apt update
|
|
||||||
apt install -y --no-install-recommends gnupg
|
|
||||||
echo "deb http://developer.download.nvidia.com/devtools/repos/ubuntu$(source /etc/lsb-release; echo "$DISTRIB_RELEASE" | tr -d .)/$(dpkg --print-architecture) /" | tee /etc/apt/sources.list.d/nvidia-devtools.list
|
|
||||||
apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pub
|
|
||||||
apt update
|
|
||||||
apt install nsight-systems-cli
|
|
||||||
```
|
|
||||||
|
|
||||||
1. To profile a single batch, use `nsys profile --trace-fork-before-exec=true --cuda-graph-trace=node python3 -m sglang.bench_one_batch --model meta-llama/Meta-Llama-3-8B --batch-size 64 --input-len 512`
|
|
||||||
|
|
||||||
2. To profile a server, e.g.
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# server
|
|
||||||
# set the delay and duration times according to needs
|
|
||||||
nsys profile --trace-fork-before-exec=true --cuda-graph-trace=node -o sglang.out --delay 60 --duration 70 python3 -m sglang.launch_server --model-path meta-llama/Llama-3.1-8B-Instruct --disable-radix-cache
|
|
||||||
|
|
||||||
# client
|
|
||||||
python3 -m sglang.bench_serving --backend sglang --num-prompts 1000 --dataset-name random --random-input 1024 --random-output 512
|
|
||||||
```
|
|
||||||
|
|
||||||
3. Use NVTX, e.g.
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# install nvtx
|
|
||||||
pip install nvtx
|
|
||||||
|
|
||||||
# code snippets
|
|
||||||
import nvtx
|
|
||||||
with nvtx.annotate("description", color="color"):
|
|
||||||
# some critical code
|
|
||||||
```
|
|
||||||
|
|
||||||
## Other tips
|
|
||||||
|
|
||||||
1. You can benchmark a model using dummy weights by only providing the config.json file. This allows for quick testing of model variants without training. To do so, add `--load-format dummy` to the above commands and then you only need a correct `config.json` under the checkpoint folder.
|
|
||||||
2. You can benchmark a model with modified configs (e.g., less layers) by using `--json-model-override-args`. For example, you can benchmark a model with only 2 layers and 2 kv heads using `python -m sglang.bench_one_batch --model-path meta-llama/Meta-Llama-3.1-8B-Instruct --batch 32 --input-len 256 --output-len 32 --load-format dummy --json-model-override-args '{"num_hidden_layers": 1, "num_key_value_heads": 1}'`
|
|
||||||
|
|
||||||
|
|
||||||
## Profile with PyTorch Profiler
|
## Profile with PyTorch Profiler
|
||||||
|
Pytorch Profiler is a convenient basic tool to inspect kernel execution time, call stack, and kernel overlap and occupancy.
|
||||||
- To profile a server
|
- To profile a server
|
||||||
```bash
|
```bash
|
||||||
# set trace path
|
# set trace path
|
||||||
@@ -92,3 +49,51 @@ For example, when profiling a server,
|
|||||||
python -m sglang.bench_serving --backend sglang --model-path meta-llama/Llama-3.1-8B-Instruct --num-prompts 2 --sharegpt-output-len 100 --profile
|
python -m sglang.bench_serving --backend sglang --model-path meta-llama/Llama-3.1-8B-Instruct --num-prompts 2 --sharegpt-output-len 100 --profile
|
||||||
```
|
```
|
||||||
sets the number of prompts to 2 with `--num-prompts` argument and limits the length of output sequences to 100 with `--sharegpt-output-len` argument, which can generate a small trace file for browser to open smoothly.
|
sets the number of prompts to 2 with `--num-prompts` argument and limits the length of output sequences to 100 with `--sharegpt-output-len` argument, which can generate a small trace file for browser to open smoothly.
|
||||||
|
|
||||||
|
## Profile with Nsight
|
||||||
|
Nsight systems is an advanced tool that exposes more profiling details, such as register and shared memory usage, annotated code regions and low-level CUDA APIs and events.
|
||||||
|
|
||||||
|
0. Prerequisite: install using apt, or run inside a [NVIDIA Docker container](https://catalog.ngc.nvidia.com/orgs/nvidia/containers/pytorch/tags) or [SGLang Docker container](https://github.com/sgl-project/sglang/tree/main/docker).
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# install nsys
|
||||||
|
# https://docs.nvidia.com/nsight-systems/InstallationGuide/index.html
|
||||||
|
apt update
|
||||||
|
apt install -y --no-install-recommends gnupg
|
||||||
|
echo "deb http://developer.download.nvidia.com/devtools/repos/ubuntu$(source /etc/lsb-release; echo "$DISTRIB_RELEASE" | tr -d .)/$(dpkg --print-architecture) /" | tee /etc/apt/sources.list.d/nvidia-devtools.list
|
||||||
|
apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pub
|
||||||
|
apt update
|
||||||
|
apt install nsight-systems-cli
|
||||||
|
```
|
||||||
|
|
||||||
|
1. To profile a single batch, use `nsys profile --trace-fork-before-exec=true --cuda-graph-trace=node python3 -m sglang.bench_one_batch --model meta-llama/Meta-Llama-3-8B --batch-size 64 --input-len 512`
|
||||||
|
|
||||||
|
2. To profile a server, e.g.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# server
|
||||||
|
# set the delay and duration times according to needs
|
||||||
|
nsys profile --trace-fork-before-exec=true --cuda-graph-trace=node -o sglang.out --delay 60 --duration 70 python3 -m sglang.launch_server --model-path meta-llama/Llama-3.1-8B-Instruct --disable-radix-cache
|
||||||
|
|
||||||
|
# client
|
||||||
|
python3 -m sglang.bench_serving --backend sglang --num-prompts 1000 --dataset-name random --random-input 1024 --random-output 512
|
||||||
|
```
|
||||||
|
|
||||||
|
3. Use NVTX to annotate code regions, e.g. to see their execution time.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# install nvtx
|
||||||
|
pip install nvtx
|
||||||
|
```
|
||||||
|
``` python
|
||||||
|
# code snippets
|
||||||
|
import nvtx
|
||||||
|
with nvtx.annotate("description", color="color"):
|
||||||
|
# some critical code
|
||||||
|
```
|
||||||
|
|
||||||
|
## Other tips
|
||||||
|
1. You can benchmark a model using dummy weights by only providing the config.json file. This allows for quick testing of model variants without training. To do so, add `--load-format dummy` to the above commands and then you only need a correct `config.json` under the checkpoint folder.
|
||||||
|
2. You can benchmark a model with modified configs (e.g., less layers) by using `--json-model-override-args`. For example, you can benchmark a model with only 2 layers and 2 kv heads using `python -m sglang.bench_one_batch --model-path meta-llama/Meta-Llama-3.1-8B-Instruct --batch 32 --input-len 256 --output-len 32 --load-format dummy --json-model-override-args '{"num_hidden_layers": 1, "num_key_value_heads": 1}'`
|
||||||
|
3. You can use `--python-backtrace=cuda` to see python call stack for all CUDA kernels, as in PyTorch Profiler. (Caveat: this can cause inaccurately long kernel runtimes for CUDA event based timing)
|
||||||
|
4. For more args please see https://docs.nvidia.com/nsight-systems/UserGuide/index.html
|
||||||
|
|||||||
Reference in New Issue
Block a user