New
TensorRT 10.13 Release
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_onnxsample due to unstable url of yolo weights. - Updated the
1_run_onnx_with_tensorrtand2_construct_network_with_layer_apissamples to usecuda-pythoninstead ofPyCUDAfor latest GPU/CUDA support.
- Deprecated the
- Parser changes
- Decreased memory usage when importing models with external weights
- Added
loadModelProto,loadInitializerandparseModelProtoAPIs for IParser. These APIs are meant to be used to load user initializers when parsing ONNX models. - Added
loadModelProto,loadInitializerandrefitModelProtoAPIs for IParserRefitter. These APIs are meant to be used to load user initializers when refitting ONNX models. - Deprecated
IParser::parseWithWeightDescriptors.