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