From 4fd85cd97a82e2bf76e84425861deb99a42f9585 Mon Sep 17 00:00:00 2001 From: Moshe David Date: Fri, 17 Dec 2021 19:00:33 +0200 Subject: [PATCH] Fix broken link to TRT doc in exception details (#9496) Co-authored-by: Moshe --- .../core/providers/tensorrt/tensorrt_execution_provider.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc b/onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc index ef06f69880..3f0751151f 100644 --- a/onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc +++ b/onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc @@ -926,7 +926,7 @@ SubGraphCollection_t TensorrtExecutionProvider::GetSupportedList(SubGraphCollect ORT_THROW_IF_ERROR(ORT_MAKE_STATUS(ONNXRUNTIME, FAIL, "TensorRT input: " + input_arg->Name() + " has no shape specified. " + "Please run shape inference on the onnx model first. Details can be found in " + - "https://www.onnxruntime.ai/docs/reference/execution-providers/TensorRT-ExecutionProvider.html#shape-inference-for-tensorrt-subgraphs")); + "https://onnxruntime.ai/docs/execution-providers/TensorRT-ExecutionProvider.html#shape-inference-for-tensorrt-subgraphs")); } } }