mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-02-16 15:55:08 +08:00
9 lines
111 B
Bash
9 lines
111 B
Bash
#!/bin/bash
|
|
set -u
|
|
set -e
|
|
set -x
|
|
|
|
config_file=$1
|
|
|
|
trtllm-serve disaggregated -c ${config_file} -t 7200 -r 7200
|