Skip to content
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
37 changes: 36 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.0+rtx1.6] - 2026-07-30

See what's new in TensorRT RTX 1.6 https://docs.nvidia.com/deeplearning/tensorrt-rtx/latest/index.html#what-s-new-in-nvidia-tensorrt-rtx-1-6

### 🚀 Features

- *(trtexec-rs)* --weights-as-inputs for webnn files (#123)
- Implement `Send` for HostMemory (#127)
- Support for build routes (#133)
- Implement deferred weight loading and StreamReaderV2 (#134)
- Implement EngineValidity, EngineInvalidityDiagnostics (#135)

### 🐛 Bug Fixes

- Remove lifetime from RuntimeCache (#129)

### 💼 Other

- Use RustNN's new trtx-enterprise feature (#130)
- Bump TensorRT-RTX version to 1.6 (#131)
- Bump TensorRT enterprise to version 11.1 (#132)

### 📚 Documentation

- Update doc links to TensorRT RTX documentation (#136)

### ⚙️ Miscellaneous Tasks

- Allow long path names under Windows (#128)

## [0.7.1+rtx1.5] - 2026-06-12
### 🚀 Features

Expand Down Expand Up @@ -165,6 +195,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **CUDA Integration**: Migrated CUDA memory and stream management to cudarc to align with modern Rust GPU tooling.
- **Improved Portability**: Expanded the mock mode to include stubbed TensorRT types, allowing the library to be compiled non-NVIDIA platforms (e.g., macOS).

[0.4.0]: https://github.com/rustnn/trtx-rs/releases/tag/v0.4.0
[0.3.0]: https://github.com/rustnn/trtx-rs/releases/tag/v0.3.0
[0.3.1]: https://github.com/rustnn/trtx-rs/releases/tag/v0.3.1
[0.4.0]: https://github.com/rustnn/trtx-rs/releases/tag/v0.4.0
[0.5.0]: https://github.com/rustnn/trtx-rs/releases/tag/v0.5.0
[0.6.0+rtx1.5]: https://github.com/rustnn/trtx-rs/releases#release-v0.6.0+rtx1.5
[0.7.0+rtx1.5]: https://github.com/rustnn/trtx-rs/releases#release-v0.7.0+rtx1.5
[0.7.1+rtx1.5]: https://github.com/rustnn/trtx-rs/releases#release-v0.7.1+rtx1.5
[0.8.0+rtx1.5]: https://github.com/rustnn/trtx-rs/releases#release-v0.8.0+rtx1.6
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["trtx-sys", "trtx", "trtexec-rs"]
resolver = "2"

[workspace.package]
version = "0.7.1+rtx1.5"
version = "0.8.0+rtx1.5"
edition = "2021"
license = "Apache-2.0"
authors = ["Tarek Ziade", "Markus Tavenrath", "Stephan Seitz"]
Expand Down
4 changes: 2 additions & 2 deletions trtexec-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ pretty_env_logger = "0.5"

# To upgrade the trtx version to new major version, create a PR with that bump to the RustNN repo
# and switch the RustNN dep temporarily to that branch until RustNN main has that version bump
trtx = { version = "0.7.1", path = "../trtx", default-features = true }
trtx-sys = { version = "0.7.1", path = "../trtx-sys", default-features = true }
trtx = { version = "0.8.0", path = "../trtx", default-features = true }
trtx-sys = { version = "0.8.0", path = "../trtx-sys", default-features = true }
indicatif = "0.18"
anyhow = { version = "1.0", features = ["backtrace"] }
clap = { version = "4.6", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion trtx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = ["tensorrt", "inference", "deep-learning", "nvidia", "gpu"]
categories = ["api-bindings", "science"]

[dependencies]
trtx-sys = { version = "0.7.1", path = "../trtx-sys", default-features = false }
trtx-sys = { version = "0.8.0", path = "../trtx-sys", default-features = false }
thiserror = "2.0"
cxx = "1.0"
libc = "0.2"
Expand Down
Loading