schema v0 modify

pull/10614/head
lzk 4 years ago
parent 14a711fe08
commit 42d355ae17

@ -49,6 +49,7 @@ table Tensor {
data: [ubyte];
quantParams: [QuantParam];
quantClusters: [float];
name: string;
}
union PrimitiveType {
@ -66,7 +67,7 @@ union PrimitiveType {
Resize,
DetectionPostProcess,
FullConnection,
Mean,
Mean, // DEPRECATED
DeConv2D,
Scale,
Reshape,
@ -96,11 +97,11 @@ union PrimitiveType {
Tile,
Cast,
Shape,
Nchw2Nhwc,
Nhwc2Nchw,
Nchw2Nhwc, // DEPRECATED
Nhwc2Nchw, // DEPRECATED
QuantDTypeCast,
Split,
Permute,
Permute, // DEPRECATED
FakeQuantWithMinMaxVars,
Equal,
Less,
@ -237,6 +238,27 @@ union PrimitiveType {
DropoutGrad,
MaximumGrad,
MinimumGrad,
Switch,
Partial,
TensorListFromTensor,
TensorListStack,
TensorListGetItem,
TensorListSetItem,
TensorListReserve,
All,
Assert,
Adder,
SparseSoftmaxCrossEntropy,
SmoothL1Loss,
SmoothL1LossGrad,
SigmoidCrossEntropyWithLogits,
SigmoidCrossEntropyWithLogitsGrad,
Reciprocal,
Merge,
Mod,
If,
GeLU,
Gru,
NonZero,
}

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save