summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/MaxPool2D_U8_000/test.recipe
blob: a736988e924fd9a82c3b33b248409a3523f93301 (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
operand {
  name: "ifm"
  type: UINT8
  shape { dim: 1 dim: 8 dim: 8 dim: 1 }
  quant { min: 0 max: 1 scale: 0.004 zero_point: 0 }
}
operand {
  name: "ofm"
  type: UINT8
  shape { dim: 1 dim: 7 dim: 7 dim: 1 }
  quant { min: 0 max: 1 scale: 0.004 zero_point: 0 }
}
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"