diff --git a/mindinsight/ui/src/locales/zh-cn.json b/mindinsight/ui/src/locales/zh-cn.json index 1ff574c971430e3c083e2b77419a675fd9e1c309..4e9e3ce697b065e4098d395fed07a6d55ad6dcb4 100644 --- a/mindinsight/ui/src/locales/zh-cn.json +++ b/mindinsight/ui/src/locales/zh-cn.json @@ -363,7 +363,7 @@ "downloadTimeline": "下载", "timelineTips": { "title1": "时间线功能可以帮您对训练过程进行分析,它可以展示:", - "content11": "- 算子分配到哪个设备 (AICPU/AI Core) 执行;", + "content11": "- 算子分配到哪个设备 (AI CPU/AI Core) 执行;", "content12": "- MindSpore对该网络的流切分策略;", "content13": "- 算子在Device上的执行序列和执行时长。", "title2": "如何查看时间线:", diff --git a/mindinsight/ui/src/views/train-manage/operator.vue b/mindinsight/ui/src/views/train-manage/operator.vue index c48a3de176a7c8c52aa1ee5c32a7b95bd37b07d2..5b04a8e7ca34766bd510edac97c4d30e4f61023c 100644 --- a/mindinsight/ui/src/views/train-manage/operator.vue +++ b/mindinsight/ui/src/views/train-manage/operator.vue @@ -497,6 +497,7 @@ 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, @@ -543,6 +544,7 @@ 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,