summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Part_Mul_Sqrt_FC_nobias_000/test.recipe
blob: a712d2ac38d94ddcd2e8c28593bec022ffdb7520 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
operand {
  name: "in1"
  type: FLOAT32
  shape { dim: 2 dim: 4 }
}
operand {
  name: "in2"
  type: FLOAT32
  shape { dim: 2 dim: 4 }
}
operand {
  name: "mul"
  type: FLOAT32
  shape { dim: 2 dim: 4 }
}
operand {
  name: "weight"
  type: FLOAT32
  shape { dim: 4 dim: 4 }
  filler {
    tag: "gaussian"
    arg: "0.0"
    arg: "1.0"
  }
}
operand {
  name: "sqrtout"
  type: FLOAT32
  shape { dim: 2 dim: 4 }
}
operand {
  name: "fcout"
  type: FLOAT32
  shape { dim: 2 dim: 4 }
}
operation {
  type: "Mul"
  input: "in1"
  input: "in2"
  output: "mul"
  mul_options {
    activation: NONE
  }
}
operation {
  type: "Sqrt"
  input: "mul"
  output: "sqrtout"
}
operation {
  type: "FullyConnected"
  fullyconnected_options {
    activation: NONE
  }
  input: "mul"
  input: "weight"
  input: ""
  output: "fcout"
}
input: "in1"
input: "in2"
output: "fcout"
output: "sqrtout"