Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / REGRESS_ONNX_Mul_Mul_000 / test.recipe
1 operand {
2   name: "Input"
3   type: FLOAT32
4   shape {
5     dim: 1
6     dim: 3
7     dim: 32
8     dim: 32
9   }
10 }
11 operand {
12   name: "Const"
13   type: FLOAT32
14   shape {
15     dim: 1
16   }
17   filler {
18     tag: "explicit"
19     arg: "1"
20   }
21 }
22 operand {
23   name: "Mul1"
24   type: FLOAT32
25   shape {
26     dim: 1
27     dim: 3
28     dim: 32
29     dim: 32
30   }
31 }
32 operand {
33   name: "ShapeConst"
34   type: INT32
35   shape {
36     dim: 3
37   }
38   filler {
39     tag: "explicit"
40     arg: "3"
41     arg: "32"
42     arg: "32"
43   }
44 }
45 operand {
46   name: "Reshape"
47   type: FLOAT32
48   shape {
49     dim: 3
50     dim: 32
51     dim: 32
52   }
53 }
54 operand {
55   name: "Mul2"
56   type: FLOAT32
57   shape {
58     dim: 3
59     dim: 32
60     dim: 32
61   }
62 }
63 operation {
64   type: "Mul"
65   input: "Input"
66   input: "Const"
67   output: "Mul1"
68   mul_options {
69     activation: NONE
70   }
71 }
72 operation {
73   type: "Reshape"
74   input: "Mul1"
75   input: "ShapeConst"
76   output: "Reshape"
77 }
78 operation {
79   type: "Mul"
80   input: "Reshape"
81   input: "Const"
82   output: "Mul2"
83   mul_options {
84     activation: NONE
85   }
86 }
87 input: "Input"
88 output: "Mul2"