From c945c10ee19a75c0d68fe0c06d3ef3c1f5c19479 Mon Sep 17 00:00:00 2001 From: ph Date: Thu, 19 Nov 2020 11:02:55 +0800 Subject: [PATCH] ui support gpu profiling step trace --- mindinsight/ui/src/router.js | 4 + .../profiling-gpu/profiling-dashboard.vue | 543 +++++++++++++++++- .../views/profiling/profiling-dashboard.vue | 14 +- 3 files changed, 547 insertions(+), 14 deletions(-) diff --git a/mindinsight/ui/src/router.js b/mindinsight/ui/src/router.js index e8feee76..c5c48e5b 100644 --- a/mindinsight/ui/src/router.js +++ b/mindinsight/ui/src/router.js @@ -119,6 +119,10 @@ export default new Router({ path: 'operator', component: () => import('./views/profiling-gpu/operator.vue'), }, + { + path: 'step-trace', + component: () => import('./views/profiling/step-trace.vue'), + }, ], }, { diff --git a/mindinsight/ui/src/views/profiling-gpu/profiling-dashboard.vue b/mindinsight/ui/src/views/profiling-gpu/profiling-dashboard.vue index 253e1fc4..5b38207a 100644 --- a/mindinsight/ui/src/views/profiling-gpu/profiling-dashboard.vue +++ b/mindinsight/ui/src/views/profiling-gpu/profiling-dashboard.vue @@ -16,19 +16,91 @@ limitations under the License.