summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/BatchToSpaceND_000/test.recipe
blob: 3d7c28cb09e71d116081692a5dd78e579a5a92ed (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
operand {
  name: "ifm"
  type: FLOAT32
  shape { dim: 4 dim: 1 dim: 1 dim: 1 }
}
operand {
  name: "crops"
  type: INT32
  shape { dim: 2 dim: 2 }
  filler {
    tag: "explicit"
    arg: "0" arg: "0"
    arg: "0" arg: "0"
  }
}
operand {
  name: "block_shape"
  type: INT32
  shape { dim: 2 }
  filler {
    tag: "explicit"
    arg: "2" arg: "2"
  }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 1 dim: 2 dim: 2 dim: 1 }
}
operation {
  type: "BatchToSpaceND"
  input: "ifm"
  input: "block_shape"
  input: "crops"
  output: "ofm"
}
input: "ifm"
output: "ofm"