mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-12-24 13:28:13 +08:00
* bench command * bench command * bench command * bench command * bench command --------- Co-authored-by: K11OntheBoat <your_email@example.com>
14 lines
505 B
Python
14 lines
505 B
Python
from fastdeploy.entrypoints.cli.benchmark.eval import BenchmarkEvalSubcommand
|
|
from fastdeploy.entrypoints.cli.benchmark.latency import BenchmarkLatencySubcommand
|
|
from fastdeploy.entrypoints.cli.benchmark.serve import BenchmarkServingSubcommand
|
|
from fastdeploy.entrypoints.cli.benchmark.throughput import (
|
|
BenchmarkThroughputSubcommand,
|
|
)
|
|
|
|
__all__: list[str] = [
|
|
"BenchmarkLatencySubcommand",
|
|
"BenchmarkServingSubcommand",
|
|
"BenchmarkThroughputSubcommand",
|
|
"BenchmarkEvalSubcommand",
|
|
]
|