From 9524e3b4f43592a19db6922a3e62697dd7f344be Mon Sep 17 00:00:00 2001 From: FocusedSG Date: Wed, 15 Oct 2025 01:26:50 +0800 Subject: [PATCH] Fix incorrect EP options parameter names for TensorRT RTX Referenced from https://github.com/microsoft/onnxruntime/blob/main/include/onnxruntime/core/providers/nv_tensorrt_rtx/nv_provider_options.h --- docs/execution-providers/TensorRTRTX-ExecutionProvider.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/execution-providers/TensorRTRTX-ExecutionProvider.md b/docs/execution-providers/TensorRTRTX-ExecutionProvider.md index 9cbd1e46d0d5f..89e64d2c115fd 100644 --- a/docs/execution-providers/TensorRTRTX-ExecutionProvider.md +++ b/docs/execution-providers/TensorRTRTX-ExecutionProvider.md @@ -183,9 +183,9 @@ TensorRT RTX EP provides the following user configurable options with the [Execu | nv_dump_subgraphs | `bool` | Enable subgraph dumping for debugging | false | | nv_detailed_build_log | `bool` | Enable detailed build logging | false | | enable_cuda_graph | `bool` | Enable [CUDA graph](https://developer.nvidia.com/blog/cuda-graphs/) to reduce inference overhead. Helpful for smaller models | false | -| profile_min_shapes | `str` | Comma-separated list of input tensor shapes for the minimum optimization profile. Format: `"input1:dim1xdim2x...,input2:dim1xdim2x..."` | "" (auto) | -| profile_max_shapes | `str` | Comma-separated list of input tensor shapes for the maximum optimization profile. Format: `"input1:dim1xdim2x...,input2:dim1xdim2x..."` | "" (auto) | -| profile_opt_shapes | `str` | Comma-separated list of input tensor shapes for the optimal optimization profile. Format: `"input1:dim1xdim2x...,input2:dim1xdim2x..."` | "" (auto) | +| nv_profile_min_shapes | `str` | Comma-separated list of input tensor shapes for the minimum optimization profile. Format: `"input1:dim1xdim2x...,input2:dim1xdim2x..."` | "" (auto) | +| nv_profile_max_shapes | `str` | Comma-separated list of input tensor shapes for the maximum optimization profile. Format: `"input1:dim1xdim2x...,input2:dim1xdim2x..."` | "" (auto) | +| nv_profile_opt_shapes | `str` | Comma-separated list of input tensor shapes for the optimal optimization profile. Format: `"input1:dim1xdim2x...,input2:dim1xdim2x..."` | "" (auto) | | nv_multi_profile_enable | `bool` | Enable support for multiple optimization profiles in TensorRT engine. Allows dynamic input shapes for different inference requests | false | | nv_use_external_data_initializer | `bool` | Use external data initializer for model weights. Useful for EP context large models with external data files | false | | nv_runtime_cache_path | `str` | Path to store runtime cache. Setting this enables faster model loading by caching JIT compiled kernels for each TensorRT RTX engine. | "" (disabled) | @@ -260,4 +260,4 @@ When using [onnxruntime_perf_test](https://github.com/microsoft/onnxruntime/tree ## Plugins Support -TensorRT RTX doesn’t support plugins \ No newline at end of file +TensorRT RTX doesn’t support plugins