Skip to content

TensorRT OSS v10.10.0

Latest
Compare
Choose a tag to compare
@poweiw poweiw released this 09 May 22:27
665cfbe

10.10.0 GA

For more information, see the TensorRT 10.10.0 release notes.

Key Features and Updates:

  • Demo changes
    • demoDiffusion
      • Added fp16 and fp8 LoRA support for demo diffusion’s SDXL and FLUX pipeline.
      • Added fp16 ControlNet support for demo diffusion’s SDXL pipeline.
  • Plugin changes
    • Deprecated the enum classes PluginVersion & PluginCreatorVersion. PluginVersion & PluginCreatorVersion are used only in relation to IPluginV2-descendent plugin interfaces, which are all deprecated.
    • Added the following APIs that enable users to obtain a list of all Plugin Creators hierarchically registered to a TensorRT Plugin Registry (C++, Python) instance.
      • C++ API: IPluginRegistry::getAllCreatorsRecursive()
      • Python API: IPluginRegistry.all_creators_recursive
  • Parser changes
    • Cleaned up log spam when the ONNX network contained a mixture Plugins and LocalFunctions
    • UINT8 constants are now properly imported for QuantizeLinear & DequantizeLinear nodes
    • Plugin fallback importer now also reads its namespace from a Node's domain field
  • Sample changes