Skip to content

Commit eca4003

Browse files
Hotfix add autocast type to public api
1 parent cbb0892 commit eca4003

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,25 @@ limitations under the License.
1616

1717
# Changelog
1818

19+
## 0.13.1
20+
21+
- fix: Add AutocastType to public API
22+
23+
[//]: <> (put here on external component update with short summary what change or link to changelog)
24+
25+
- Version of external components used during testing:
26+
- [PyTorch 2.6.0a0+df5bbc0](https://github.com/pytorch/pytorch/commit/df5bbc09d191fff3bdb592c184176e84669a7157)
27+
- [TensorFlow 2.16.1](https://github.com/tensorflow/tensorflow/releases/tag/v2.16.1)
28+
- [TensorRT 10.6.0.26](https://docs.nvidia.com/deeplearning/tensorrt/release-notes/index.html)
29+
- [Torch-TensorRT 2.6.0a0](https://github.com/NVIDIA/Torch-TensorRT)
30+
- [ONNX Runtime 1.19.2](https://github.com/microsoft/onnxruntime/releases/tag/v1.19.2)
31+
- [Polygraphy](https://github.com/NVIDIA/TensorRT/tree/master/tools/Polygraphy/): 0.49.13
32+
- [GraphSurgeon](https://github.com/NVIDIA/TensorRT/tree/master/tools/onnx-graphsurgeon/): 0.5.2
33+
- [tf2onnx v1.16.1](https://github.com/onnx/tensorflow-onnx/releases/tag/v1.16.1)
34+
- Other component versions depend on the used framework containers versions.
35+
See its [support matrix](https://docs.nvidia.com/deeplearning/frameworks/support-matrix/index.html)
36+
for a detailed summary.
37+
1938
## 0.13.0
2039

2140
- new: Introducing custom_args in TensorConfig for custom runners to use which

model_navigator/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
from model_navigator.__version__ import __version__ # noqa: F401
1616
from model_navigator.configuration import ( # noqa: F401 # noqa: F401
17+
AutocastType,
1718
DeviceKind,
1819
Format,
1920
Framework,

model_navigator/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.13.0"
15+
__version__ = "0.13.1"

0 commit comments

Comments
 (0)