This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
Huawei_Technology
/
mindspore
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
13
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
!8612
[MS][LITE]control flow schema ops
From:
@YeFeng_24
Reviewed-by: @hangangqiang,@zhanghaibo5 Signed-off-by:
@hangangqiang
tags/v1.1.0
mindspore-ci-bot
Gitee
5 years ago
parent
f885f6636f
f631889a47
commit
e8c8b40e5a
2 changed files
with
44 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+10
-1
mindspore/lite/schema/model.fbs
+34
-0
mindspore/lite/schema/ops.fbs
+ 10
- 1
mindspore/lite/schema/model.fbs
View File
@@ -236,7 +236,16 @@ union PrimitiveType {
LpNormalization,
DropoutGrad,
MaximumGrad,
MinimumGrad
MinimumGrad,
Switch,
Partial,
TensorListFromTensor,
TensorListStack,
TensorListGetItem,
TensorListSetItem,
TensorListReserve,
All,
Assert,
}
enum QuantType: int {
+ 34
- 0
mindspore/lite/schema/ops.fbs
View File
@@ -1143,3 +1143,37 @@ table LpNormalization {
axis : int;
p : int;
}
table Switch {
}
table Partial {
subGraphIndex : int;
}
table TensorListFromTensor {
}
table TensorListStack {
numElements : int;
elementDType : int;
}
table TensorListGetItem {
elementDType : int;
}
table TensorListSetItem {
}
table TensorListReserve {
elementDType : int;
}
table All {
keepDims : int;
}
table Assert {
summarize : int;
}
Write
Preview
Loading…
Cancel
Save