2025-02-02 14:58:18 -05:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2025-06-03 11:20:17 -07:00
|
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
2025-09-09 03:02:35 -07:00
|
|
|
import sys
|
2025-05-13 14:43:29 +01:00
|
|
|
|
2025-09-09 03:02:35 -07:00
|
|
|
if __name__ == "__main__":
|
|
|
|
|
print("""DEPRECATED: This script has been moved to the vLLM CLI.
|
2025-06-14 16:54:52 +08:00
|
|
|
|
2025-09-09 03:02:35 -07:00
|
|
|
Please use the following command instead:
|
|
|
|
|
vllm bench throughput
|
2025-06-14 16:54:52 +08:00
|
|
|
|
2025-09-09 03:02:35 -07:00
|
|
|
For help with the new command, run:
|
|
|
|
|
vllm bench throughput --help
|
2025-06-14 16:54:52 +08:00
|
|
|
|
2025-09-09 03:02:35 -07:00
|
|
|
Alternatively, you can run the new command directly with:
|
|
|
|
|
python -m vllm.entrypoints.cli.main bench throughput --help
|
|
|
|
|
""")
|
|
|
|
|
sys.exit(1)
|