Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / Squeeze_000 / test.recipe
1 operand {
2   name: "ifm"
3   type: FLOAT32
4   shape { dim: 1 dim: 4 dim: 5 dim: 1 }
5 }
6 operand {
7   name: "ofm"
8   type: FLOAT32
9   shape { dim: 4 dim: 5 }
10 }
11 operation {
12   type: "Squeeze"
13   squeeze_options { squeeze_dim: 0, squeeze_dim: 3 }
14   input: "ifm"
15   output: "ofm"
16 }
17 input: "ifm"
18 output: "ofm"