Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
chilo-ms committed Feb 14, 2025
1 parent 3ce199a commit ea8f11e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ void TensorrtExecutionProvider::CheckDDSOpInSubGraph(const GraphViewer& graph,
if (is_dds_op(graph.GetNode(i))) {
if (trt_version >= 100000 && trt_version < 110000) {
LOGS_DEFAULT(VERBOSE) << "Some DDS nodes will be run by TRT.";
LOGS_DEFAULT(VERBOSE) << "There may be potential performance issues in TRT 10 when running models that contain DDS operations such as NonMaxSuppression, NonZero, and RoiAlign (e.g., Faster-RCNN).";
LOGS_DEFAULT(VERBOSE) << "There may be potential performance issue in TRT 10 when running models that contain DDS operations such as NonMaxSuppression, NonZero, and RoiAlign (e.g., Faster-RCNN).";
LOGS_DEFAULT(VERBOSE) << "If you encounter significant performance degradation, we suggest specifying those DDS ops to be excluded from running by TRT, i.e. trt_op_types_to_exclude=\"NonMaxSuppression,NonZero,RoiAlign\". Those DDS nodes will be run by CUDA EP or CPU.";
}
return;
Expand Down

0 comments on commit ea8f11e

Please sign in to comment.