From 7da5949279577ee21fa09ed6484833dfe10f127d Mon Sep 17 00:00:00 2001 From: ytaous <4484531+ytaous@users.noreply.github.com> Date: Thu, 22 Oct 2020 10:34:20 -0700 Subject: [PATCH] NVTX label change (#5562) * label change * more info on label Co-authored-by: Ethan Tao --- onnxruntime/core/framework/sequential_executor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {