Browse Source

fix operator list sort issue

tags/v0.6.0-beta
ph 5 years ago
parent
commit
61ff2557a1
2 changed files with 3 additions and 1 deletions
  1. +1
    -1
      mindinsight/ui/src/locales/zh-cn.json
  2. +2
    -0
      mindinsight/ui/src/views/train-manage/operator.vue

+ 1
- 1
mindinsight/ui/src/locales/zh-cn.json View File

@@ -363,7 +363,7 @@
"downloadTimeline": "下载",
"timelineTips": {
"title1": "时间线功能可以帮您对训练过程进行分析,它可以展示:",
"content11": "- 算子分配到哪个设备 (AICPU/AI Core) 执行;",
"content11": "- 算子分配到哪个设备 (AI CPU/AI Core) 执行;",
"content12": "- MindSpore对该网络的流切分策略;",
"content13": "- 算子在Device上的执行序列和执行时长。",
"title2": "如何查看时间线:",


+ 2
- 0
mindinsight/ui/src/views/train-manage/operator.vue View File

@@ -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,


Loading…
Cancel
Save