Skip to content

TensorRT 10.13 Release

Choose a tag to compare

@kevinch-nv kevinch-nv released this 24 Jul 22:00
b8db91e

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 and 2_construct_network_with_layer_apis samples to use cuda-python instead of PyCUDA for latest GPU/CUDA support.
  • Parser changes
    • Decreased memory usage when importing models with external weights
    • Added loadModelProto, loadInitializer and parseModelProto APIs for IParser. These APIs are meant to be used to load user initializers when parsing ONNX models.
    • Added loadModelProto, loadInitializer and refitModelProto APIs for IParserRefitter. These APIs are meant to be used to load user initializers when refitting ONNX models.
    • Deprecated IParser::parseWithWeightDescriptors.