Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MindSpore
mindinsight
提交
81d9d20e
M
mindinsight
项目概览
MindSpore
/
mindinsight
通知
7
Star
3
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
mindinsight
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
81d9d20e
编写于
5月 25, 2020
作者:
M
mindspore-ci-bot
提交者:
Gitee
5月 25, 2020
浏览文件
操作
浏览文件
下载
差异文件
!164 UI fix compare plate issue
Merge pull request !164 from 潘慧/master_ph
上级
baa53b2c
f448a236
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
31 addition
and
12 deletion
+31
-12
mindinsight/ui/src/services/request-service.js
mindinsight/ui/src/services/request-service.js
+2
-1
mindinsight/ui/src/views/train-manage/compare-plate.vue
mindinsight/ui/src/views/train-manage/compare-plate.vue
+29
-11
未找到文件。
mindinsight/ui/src/services/request-service.js
浏览文件 @
81d9d20e
...
...
@@ -104,9 +104,10 @@ export default {
},
// query trainJob data
getTrainJobs
(
isIgnoreError
)
{
getTrainJobs
(
params
,
isIgnoreError
)
{
return
axios
({
method
:
'
get
'
,
params
:
params
,
url
:
'
v1/mindinsight/datavisual/train-jobs
'
,
headers
:
{
ignoreError
:
isIgnoreError
,
...
...
mindinsight/ui/src/views/train-manage/compare-plate.vue
浏览文件 @
81d9d20e
...
...
@@ -171,7 +171,7 @@ export default {
curBenchX
:
'
stepData
'
,
// Front axle reference
curAxisName
:
this
.
$t
(
'
scalar.step
'
),
// Current chart tip
axisBenchChangeTimer
:
null
,
// Horizontal axis reference switching timing
cacheStatus
:
'
CACHING
'
,
cacheStatus
:
'
CACHING
'
,
// cache
};
},
computed
:
{
...
...
@@ -284,7 +284,11 @@ export default {
* Obtain the tag and summary list.
*/
getScalarsList
()
{
RequestService
.
getTrainJobs
()
const
params
=
{};
params
.
offset
=
0
;
params
.
limit
=
999
;
RequestService
.
getTrainJobs
(
params
)
.
then
((
res
)
=>
{
// error;
if
(
...
...
@@ -310,6 +314,8 @@ export default {
label
:
summaryObj
.
train_id
,
checked
:
true
,
show
:
true
,
color
:
summaryNmeColor
,
colorIndex
:
colorIndex
,
});
if
(
summaryObj
.
cache_status
===
this
.
cacheStatus
)
{
...
...
@@ -1096,7 +1102,9 @@ export default {
return
;
}
this
.
multiSelectedSummaryNames
=
selectedItemDict
;
this
.
autoUpdateSamples
();
if
(
this
.
isTimeReload
)
{
this
.
autoUpdateSamples
();
}
this
.
trainJobsCaches
();
this
.
updateSummary
();
},
...
...
@@ -1203,13 +1211,6 @@ export default {
}
if
(
error
.
response
&&
error
.
response
.
data
)
{
this
.
clearAllData
();
}
else
{
if
(
!
(
error
.
code
===
'
ECONNABORTED
'
&&
/^timeout/
.
test
(
error
.
message
))
)
{
// Clear data
this
.
clearAllData
();
}
}
},
...
...
@@ -1326,7 +1327,11 @@ export default {
label
:
summaryObj
.
train_id
,
checked
:
false
,
show
:
false
,
color
:
summaryColor
,
colorIndex
:
colorIndex
,
});
}
else
{
summaryColor
=
this
.
summaryOperateList
[
sameSummaryIndex
].
color
;
}
if
(
summaryObj
.
cache_status
===
this
.
cacheStatus
)
{
...
...
@@ -1335,6 +1340,12 @@ export default {
item
.
loading
=
true
;
}
});
}
else
{
this
.
summaryOperateList
.
forEach
((
item
)
=>
{
if
(
item
.
label
===
summaryObj
.
train_id
)
{
item
.
loading
=
false
;
}
});
}
summaryObj
.
plugins
.
scalar
.
forEach
((
tagObj
)
=>
{
...
...
@@ -1395,7 +1406,10 @@ export default {
*/
updateAllData
(
ignoreError
)
{
RequestService
.
getTrainJobs
(
ignoreError
)
const
params
=
{};
params
.
offset
=
0
;
params
.
limit
=
999
;
RequestService
.
getTrainJobs
(
params
,
ignoreError
)
.
then
((
res
)
=>
{
if
(
this
.
isReloading
)
{
this
.
$store
.
commit
(
'
setIsReload
'
,
false
);
...
...
@@ -1420,6 +1434,10 @@ export default {
this
.
$nextTick
(()
=>
{
this
.
multiSelectedTagNames
=
this
.
$refs
.
tagsGroup
.
updateSelectedDic
();
this
.
multiSelectedSummaryNames
=
this
.
$refs
.
summaryGroup
.
updateSelectedDic
();
this
.
$refs
.
summaryGroup
.
$forceUpdate
();
this
.
$refs
.
tagsGroup
.
$forceUpdate
();
this
.
updateTagInPage
(
!
tagRemoveFlag
&&
!
tagAddFlag
);
this
.
resizeCallback
();
this
.
trainJobsCaches
();
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录