summaryrefslogtreecommitdiff
path: root/compiler/enco/test/tflite/MaxPool2D_000/test.recipe
blob: 718630f08f5172fdee2e571ab2be1f0f55e20dac (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
operand {
  name: "ifm"
  type: FLOAT32
  shape { dim: 1 dim: 8 dim: 8 dim: 1 }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 1 dim: 7 dim: 7 dim: 1 }
}
operation {
  type: "MaxPool2D"
  maxpool2d_options {
    padding: VALID
    stride_w: 1
    stride_h: 1
    filter_width: 2
    filter_height: 2
  }
  input: "ifm"
  output: "ofm"
}
input: "ifm"
output: "ofm"