Imported Upstream version 1.12.0
[platform/core/ml/nnfw.git] / compiler / circlechef / tests / shape_signature / test.recipe
1 operand {
2   name: "ifm"
3   type: FLOAT32
4   shape { dim: 1 dim: 8 dim: 6 dim: 12 }
5   shape_signature { dim: -1 dim: 8 dim: 6 dim: 12 }
6 }
7 operand {
8   name: "gamma"
9   type: FLOAT32
10   shape { dim: 12 }
11   filler {
12     tag: "gaussian"
13     arg: "0.0"
14     arg: "1.0"
15   }
16 }
17 operand {
18   name: "beta"
19   type: FLOAT32
20   shape { dim: 12 }
21   filler {
22     tag: "gaussian"
23     arg: "0.0"
24     arg: "1.0"
25   }
26 }
27 operand {
28   name: "ofm"
29   type: FLOAT32
30   shape { dim: 1 dim: 8 dim: 6 dim: 12 }
31   shape_signature { dim: -1 dim: 8 dim: 6 dim: 12 }
32 }
33 operation {
34   type: "InstanceNorm"
35   input: "ifm"
36   input: "gamma"
37   input: "beta"
38   output: "ofm"
39   instance_norm_options {
40     epsilon: 0.00001
41     activation: NONE
42   }
43 }
44 input: "ifm"
45 output: "ofm"