Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MindSpore
mindinsight
提交
604e6a07
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看板
提交
604e6a07
编写于
8月 22, 2020
作者:
F
fengxuefeng
提交者:
WeiFeng-mindinsight
8月 22, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Remove the AI core information from the hardware resource visualization
page
上级
b95122b1
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
0 addition
and
31 deletion
+0
-31
mindinsight/ui/src/locales/en-us.json
mindinsight/ui/src/locales/en-us.json
+0
-3
mindinsight/ui/src/locales/zh-cn.json
mindinsight/ui/src/locales/zh-cn.json
+0
-3
mindinsight/ui/src/views/train-manage/hardware-visual.vue
mindinsight/ui/src/views/train-manage/hardware-visual.vue
+0
-25
未找到文件。
mindinsight/ui/src/locales/en-us.json
浏览文件 @
604e6a07
...
...
@@ -404,7 +404,6 @@
"availableTip"
:
"Is chip available(for reference only)"
,
"healthTip"
:
"Chip health status"
,
"ipTip"
:
"Chip IP address"
,
"aicoreTip"
:
"Chip utilization"
,
"hbmTip"
:
"Chip HBM usage"
,
"powerTip"
:
"Chip real-time power"
,
"temperatureTip"
:
"Chip real-time temperature"
,
...
...
@@ -429,13 +428,11 @@
"availableFree"
:
"The chip is available."
,
"availableBusy"
:
"The chip is occupied or unavailable."
,
"failQueryChip"
:
"An error occurs during chip information query."
,
"faliQuery"
:
"Query error"
,
"name"
:
"Name"
,
"npu"
:
"ID"
,
"available"
:
"Available"
,
"health"
:
"Health"
,
"ipAddress"
:
"IP Address"
,
"aiCore"
:
"AI Core(%)"
,
"hbmUsage"
:
"HBM-Usage(MB)"
,
"power"
:
"Power(W)"
,
"temp"
:
"Temp(℃)"
...
...
mindinsight/ui/src/locales/zh-cn.json
浏览文件 @
604e6a07
...
...
@@ -403,7 +403,6 @@
"availableTip"
:
"芯片是否空闲(仅供参考)"
,
"healthTip"
:
"芯片健康状态"
,
"ipTip"
:
"芯片IP地址"
,
"aicoreTip"
:
"芯片AI Core利用率"
,
"hbmTip"
:
"芯片已用HBM内存"
,
"powerTip"
:
"芯片实时功率"
,
"temperatureTip"
:
"芯片实时温度"
,
...
...
@@ -428,13 +427,11 @@
"availableFree"
:
"芯片空闲"
,
"availableBusy"
:
"芯片已被占用或不可用"
,
"failQueryChip"
:
"芯片信息查询有误"
,
"faliQuery"
:
"查询有误"
,
"name"
:
"名称"
,
"npu"
:
"编号"
,
"available"
:
"是否空闲"
,
"health"
:
"健康状态"
,
"ipAddress"
:
"IP 地址"
,
"aiCore"
:
"AI Core利用率(%)"
,
"hbmUsage"
:
"已用HBM内存(MB)"
,
"power"
:
"功率(W)"
,
"temp"
:
"温度(℃)"
...
...
mindinsight/ui/src/views/train-manage/hardware-visual.vue
浏览文件 @
604e6a07
...
...
@@ -134,24 +134,6 @@ limitations under the License.
<span
class=
"cl-text-center"
>
{{
scope
.
row
.
ip_address
}}
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
"aicore"
>
<
template
slot=
"header"
>
{{
$t
(
'
hardwareVisual.aiCore
'
)
}}
<el-tooltip
class=
"item"
effect=
"light"
:content=
"$t('hardwareVisual.aicoreTip')"
placement=
"top-start"
>
<i
class=
"el-icon-info"
></i>
</el-tooltip>
</
template
>
<
template
slot-scope=
"scope"
>
<div
class=
"core-wrap"
>
<el-progress
:percentage=
"scope.row.aicore_rate===-1?0:scope.row.aicore_rate"
:format=
"format(scope.row.aicore_rate)"
></el-progress>
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"hbm_usage"
min-width=
"100"
>
<
template
slot=
"header"
>
...
...
@@ -617,13 +599,6 @@ export default {
}
return
`
${
n
}
`
;
},
format
(
percentage
,
item
)
{
return
()
=>
{
return
percentage
===
-
1
?
this
.
$t
(
'
hardwareVisual.faliQuery
'
)
:
`
${
percentage
}
`
;
};
},
formatHbm
(
hbmInfo
)
{
return
function
()
{
return
`
${
hbmInfo
.
memory_usage
}
/
${
hbmInfo
.
memory_size
}
`
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录