Imported Upstream version 1.8.0
[platform/core/ml/nnfw.git] / compute / cker / include / cker / Types.h
index 41b1916..886ce5e 100644 (file)
@@ -259,6 +259,12 @@ struct FullyConnectedParams
   // FullyConnectedWeightsFormat weights_format;
 };
 
+struct L2NormParams
+{
+  // uint8 inference params.
+  int32_t input_zero_point;
+};
+
 struct GatherParams
 {
   int32_t axis;
@@ -271,6 +277,14 @@ struct InstanceNormParams
   float float_activation_max;
 };
 
+struct ResizeBilinearParams
+{
+  int32_t output_height;
+  int32_t output_width;
+  bool align_corners;
+  bool half_pixel_centers;
+};
+
 struct TransposeConvParams
 {
   PaddingType padding_type;
@@ -325,6 +339,12 @@ struct SplitParams
   int16_t axis;
 };
 
+struct SplitVParams
+{
+  uint16_t num_split;
+  int16_t axis;
+};
+
 struct FusedBatchNormParams
 {
   bool is_training;
@@ -338,6 +358,11 @@ struct SpaceToBatchParams
   int32_t output_offset;
 };
 
+struct SpaceToDepthParams
+{
+  int32_t block_size;
+};
+
 enum class Order
 {
   kColMajor,