Skip to content

Commit

Permalink
Merge pull request #868 from basetenlabs/bump-version-0.9.5
Browse files Browse the repository at this point in the history
Release 0.9.5
  • Loading branch information
squidarth authored Mar 19, 2024
2 parents bcc5a05 + 020542b commit 90af43f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "truss"
version = "0.9.4"
version = "0.9.5"
description = "A seamless bridge from model development to model delivery"
license = "MIT"
readme = "README.md"
Expand Down
1 change: 1 addition & 0 deletions truss/tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ def test_parse_resources(input_dict, expect_resources, output_dict):
("A10G:4", AcceleratorSpec(Accelerator.A10G, 4)),
("A100:8", AcceleratorSpec(Accelerator.A100, 8)),
("H100", AcceleratorSpec(Accelerator.H100, 1)),
("H100_40GB", AcceleratorSpec(Accelerator.H100_40GB, 1)),
],
)
def test_acc_spec_from_str(input_str, expected_acc):
Expand Down
1 change: 1 addition & 0 deletions truss/truss_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ class Accelerator(Enum):
V100 = "V100"
A100 = "A100"
H100 = "H100"
H100_40GB = "H100_40GB"


@dataclass
Expand Down

0 comments on commit 90af43f

Please sign in to comment.