Browse Source

Ui add cpu analyser of profiler module

tags/v1.2.0-rc1
fengxuefeng 4 years ago
parent
commit
b68112fedc
6 changed files with 1556 additions and 2869 deletions
  1. +1179
    -0
      mindinsight/ui/src/components/operator-unit.vue
  2. +2
    -2
      mindinsight/ui/src/mixins/debugger-mixin.vue
  3. +210
    -1273
      mindinsight/ui/src/views/profiling-gpu/operator.vue
  4. +1
    -1
      mindinsight/ui/src/views/profiling/data-process.vue
  5. +162
    -1591
      mindinsight/ui/src/views/profiling/operator.vue
  6. +2
    -2
      mindinsight/ui/src/views/train-manage/graph.vue

+ 1179
- 0
mindinsight/ui/src/components/operator-unit.vue
File diff suppressed because it is too large
View File


+ 2
- 2
mindinsight/ui/src/mixins/debugger-mixin.vue View File

@@ -1546,8 +1546,8 @@ export default {
}, },
/** /**
* Tree linkage with graph Expand of current node * Tree linkage with graph Expand of current node
* @param {Obeject} nodes Data of children of current node
* @param {Obeject} name The name of the current node
* @param {Object} nodes Data of children of current node
* @param {Object} name The name of the current node
*/ */
nodeExpandLinkage(nodes, name) { nodeExpandLinkage(nodes, name) {
if (nodes.length > this.nodesCountLimit) { if (nodes.length > this.nodesCountLimit) {


+ 210
- 1273
mindinsight/ui/src/views/profiling-gpu/operator.vue
File diff suppressed because it is too large
View File


+ 1
- 1
mindinsight/ui/src/views/profiling/data-process.vue View File

@@ -1598,7 +1598,7 @@ export default {
.data-process-wrap .data-process-bottom .queue-step-wrap .chart-content .chart-wrap { .data-process-wrap .data-process-bottom .queue-step-wrap .chart-content .chart-wrap {
float: left; float: left;
width: calc(50% - 12px); width: calc(50% - 12px);
height: calc(100% - 5px);
height: calc(100% - 10px);
border-radius: 4px; border-radius: 4px;
overflow-y: auto; overflow-y: auto;
border: 1px solid #D9D9D9; border: 1px solid #D9D9D9;


+ 162
- 1591
mindinsight/ui/src/views/profiling/operator.vue
File diff suppressed because it is too large
View File


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

@@ -648,8 +648,8 @@ export default {
methods: { methods: {
/** /**
* Tree linkage with graph Expand of current node * Tree linkage with graph Expand of current node
* @param {Obeject} nodes Data of children of current node
* @param {Obeject} name The name of the current node
* @param {Object} nodes Data of children of current node
* @param {Object} name The name of the current node
*/ */
nodeExpandLinkage(nodes, name) { nodeExpandLinkage(nodes, name) {
const curNodeData = nodes.map((val) => { const curNodeData = nodes.map((val) => {


Loading…
Cancel
Save