Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / compiler / tflchef / proto / tflchef.proto
index da4b692..98ae2b2 100644 (file)
@@ -22,6 +22,7 @@ enum TensorType {
   STRING = 5;
   BOOL = 6;
   INT16 = 7;
+  INT8 = 9;
 }
 
 enum DimensionType {
@@ -436,6 +437,10 @@ message GatherNdOptions {
   // None
 }
 
+message GeluOptions {
+  optional bool approximate = 1 [default = false];
+}
+
 message NonMaxSuppressionV4Options {
   // None
 }
@@ -473,6 +478,7 @@ message TransposeConvOptions {
   optional Padding padding = 1 [default = VALID];
   optional int32 stride_w = 2 [default = 1];
   optional int32 stride_h = 3 [default = 1];
+  optional Activation activation = 4 [default = NONE];
 }
 
 message ReverseSequenceOptions {
@@ -662,6 +668,7 @@ message Operation {
   optional MatMulOptions matmul_options = 208;
   optional MaxPoolWithArgmaxOptions max_pool_with_argmax_options = 209;
   optional DensifyOptions densify_options = 210;
+  optional GeluOptions gelu_options = 211;
   // NOTE if there are more than two options with same type of Options
   // use the number not listed in the above reserve list
 }