Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2025-07-24 | 1.2 kB | |
TensorRT 10.13 Release source code.tar.gz | 2025-07-24 | 30.0 MB | |
TensorRT 10.13 Release source code.zip | 2025-07-24 | 31.2 MB | |
Totals: 3 Items | 61.2 MB | 19 |
10.13.0 GA - 2025-7-24
- Plugin changes
- Fixed a division-by-zero error in geluPlugin that occured when the bias is omitted.
- Completed transition away from using static plugin field/attribute member variables in standard plugins. There's no such need since presently, TRT does not access field information after plugin creators are destructed (deregistered from the plugin registry), nor does access such information without a creator instance.
- Sample changes
- Deprecated the
yolov3_onnx
sample due to unstable url of yolo weights. - Updated the
1_run_onnx_with_tensorrt
and2_construct_network_with_layer_apis
samples to usecuda-python
instead ofPyCUDA
for latest GPU/CUDA support. - Parser changes
- Decreased memory usage when importing models with external weights
- Added
loadModelProto
,loadInitializer
andparseModelProto
APIs for IParser. These APIs are meant to be used to load user initializers when parsing ONNX models. - Added
loadModelProto
,loadInitializer
andrefitModelProto
APIs for IParserRefitter. These APIs are meant to be used to load user initializers when refitting ONNX models. - Deprecated
IParser::parseWithWeightDescriptors
.