Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Upgrade dependencies for 24.05 #67

Merged
merged 5 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,18 @@ keywords = []
requires-python = ">=3.10,<4"
# TODO: Add [gpu] set of dependencies for trtllm once it's available on pypi
dependencies = [
"grpcio>=1.64.0",
"directory-tree == 0.0.4", # may remove in future
"docker == 6.1.3",
"genai-perf @ git+https://github.com/triton-inference-server/client.git@r24.04#subdirectory=src/c++/perf_analyzer/genai-perf",
"genai-perf @ git+https://github.com/triton-inference-server/client.git@r24.05#subdirectory=src/c++/perf_analyzer/genai-perf",
# TODO: rely on tritonclient to pull in protobuf and numpy dependencies?
"numpy >= 1.21",
"protobuf>=3.7.0",
"prometheus-client == 0.19.0",
"psutil >= 5.9.5", # may remove later
"rich == 13.5.2",
# TODO: Test on cpu-only machine if [cuda] dependency is an issue
"tritonclient[all] == 2.45.0",
# TODO: Test on cpu-only machine if [cuda] dependency is an issue,
"tritonclient[all] >= 2.46",
"huggingface-hub >= 0.19.4",
# Testing
"pytest >= 8.1.1", # may remove later
Expand Down
2 changes: 1 addition & 1 deletion src/triton_cli/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def build_command(args: argparse.Namespace, executable: str):
# Once GenAI-Perf releases 24.05, "tensorrtllm" as the backend value
# will be supported by default.
elif arg == "backend" and value in ["tensorrtllm", "trtllm"]:
cmd += ["--backend", "trtllm"]
cmd += ["--backend", "tensorrtllm"]
else:
if len(arg) == 1:
cmd += [f"-{arg}", f"{value}"]
Expand Down
Loading