diff --git a/onnxruntime/core/framework/sequential_executor.cc b/onnxruntime/core/framework/sequential_executor.cc index f8820d6abf..cbcef6a521 100644 --- a/onnxruntime/core/framework/sequential_executor.cc +++ b/onnxruntime/core/framework/sequential_executor.cc @@ -302,7 +302,7 @@ Status SequentialExecutor::Execute(const SessionState& session_state, const std: #endif #ifdef ENABLE_NVTX_PROFILE profile::NvtxRangeCreator node_compute_range( - MakeString(node.OpType(), ".", node.Index()), profile::Color::Blue); + MakeString(node.OpType(), ".", node.Index(), "(", node.Name(), ")"), profile::Color::Blue); node_compute_range.Begin(); #endif ORT_TRY {