summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/TransposeConv_000/test.recipe
blob: 79271a45f19589cf7836a1e7740c76a0677be5ab (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
operand {
  name: "out_shape"
  type: INT32
  shape { dim: 4 }
  filler {
    tag: "explicit"
    arg: "1" arg: "4" arg: "4" arg: "3" 
  }
}
operand {
  name: "ker"
  type: FLOAT32
  shape { dim: 1 dim: 3 dim: 3 dim: 1 }
  filler {
    tag: "gaussian"
    arg: "0.0"
    arg: "1.0"
  }
}
operand {
  name: "ifm"
  type: FLOAT32
  shape { dim: 1 dim: 4 dim: 4 dim: 3 }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 1 dim: 4 dim: 4 dim: 3 }
}

operation {
  type: "TransposeConv"
  transpose_conv_options {
    padding: SAME
    stride_w: 1
    stride_h: 1
  }
  input: "out_shape"
  input: "ker"
  input: "ifm"
  output: "ofm"
}
input: "ifm"
output: "ofm"