diff --git a/mindinsight/ui/src/views/train-manage/operator.vue b/mindinsight/ui/src/views/train-manage/operator.vue index 5b04a8e7ca34766bd510edac97c4d30e4f61023c..54c84832a4629af67104774f905ee3bceb40cb38 100644 --- a/mindinsight/ui/src/views/train-manage/operator.vue +++ b/mindinsight/ui/src/views/train-manage/operator.vue @@ -85,10 +85,10 @@ :property="ele" :key="key" :sortable="ele === 'op_info' ? false : 'custom'" - :width="(ele==='avg_execution_time (ms)'|| ele==='subgraph' || + :width="(ele==='avg_execution_time'|| ele==='subgraph' || ele==='op_name'|| ele==='op_type')?'220':''" show-overflow-tooltip - :label="ele"> + :label="ele==='avg_execution_time'?`${ele} (ms)`:ele"> + :label="item==='execution_time'?`${item} (ms)`:item"> @@ -183,7 +183,7 @@ @@ -497,7 +497,6 @@ export default { profile: this.profile_dir, train_id: this.train_id, }; - row.op_sort_condition.name = row.op_sort_condition.name.split(' ')[0]; params.body = { op_type: 'aicore_detail', device_id: this.currentCard, @@ -544,7 +543,6 @@ export default { profile: this.profile_dir, train_id: this.train_id, }; - this.opCpuList.op_sort_condition.name = this.opCpuList.op_sort_condition.name.split(' ')[0]; params.body = { op_type: 'aicpu', device_id: this.currentCard, diff --git a/mindinsight/ui/src/views/train-manage/step-trace.vue b/mindinsight/ui/src/views/train-manage/step-trace.vue index b3f80f7757a3d9910377106fbdce306d6050eaf0..9c67f6dae6507365a36b3afebc104f560b9748a2 100644 --- a/mindinsight/ui/src/views/train-manage/step-trace.vue +++ b/mindinsight/ui/src/views/train-manage/step-trace.vue @@ -20,7 +20,7 @@ limitations under the License. effect="light" :content="$t('profiling.defaultTip')" placement="top"> - +
@@ -258,6 +258,7 @@ export default { } this.steps = { step: null, + trueStep: null, max: 0, disabled: true, label: this.$t('profiling.stepInputTip'), @@ -849,5 +850,9 @@ export default { .image-noData.svg { height: 100%; } + .el-icon-info { + font-size: 18px; + color: #6c7280; + } }