• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# SubGraph
2
3
4## 概述
5
6子图结构体。
7
8**Since:**
9
103.2
11
12**Version:**
13
141.0
15
16**相关模块:**
17
18[NNRt](_n_n_rt.md)
19
20
21## 汇总
22
23
24### Public 属性
25
26  | 名称 | 描述 |
27| -------- | -------- |
28| [name](#name) | String<br/>子图的名称。&nbsp; |
29| [inputIndices](#inputindices) | unsigned&nbsp;int[]<br/>子图的输入子图在[Model](_model.md)的subGraph数组中的下标。&nbsp; |
30| [outputIndices](#outputindices) | unsigned&nbsp;int[]<br/>子图的输出子图在[Model](_model.md)的subGraph数组中的下标。&nbsp; |
31| [nodeIndices](#nodeindices) | unsigned&nbsp;int[]<br/>子图包含的算子节点在[Model](_model.md)的nodes数组中的下标。&nbsp; |
32
33
34## 类成员变量说明
35
36
37### inputIndices
38
39
40```
41unsigned int [] SubGraph::inputIndices
42```
43**描述:**
44子图的输入子图在[Model](_model.md)的subGraph数组中的下标。
45
46
47### name
48
49
50```
51String SubGraph::name
52```
53**描述:**
54子图的名称。
55
56
57### nodeIndices
58
59
60```
61unsigned int [] SubGraph::nodeIndices
62```
63**描述:**
64子图包含的算子节点在[Model](_model.md)的nodes数组中的下标。
65
66
67### outputIndices
68
69
70```
71unsigned int [] SubGraph::outputIndices
72```
73**描述:**
74子图的输出子图在[Model](_model.md)的subGraph数组中的下标。
75