summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/DepthwiseConv2D_U8_000/test.recipe
blob: 9a4ddf155f865a0bd30ed22e689df49742284a2e (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
operand {
  name: "ifm"
  type: UINT8
  shape { dim: 1 dim: 64 dim: 64 dim: 8 }
  quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
}
operand {
  name: "ker"
  type: UINT8
  shape { dim: 1 dim: 3 dim: 3 dim: 8 }
  quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
}
operand {
  name: "bias"
  type: INT32
  shape { dim: 8 }
	filler {
	  tag: "gaussian"
	  arg: "0"
	  arg: "1024"
	}
  quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
}
operand {
  name: "ofm"
  type: UINT8
  shape { dim: 1 dim: 64 dim: 64 dim: 8 }
  quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
}
operation {
  type: "DepthwiseConv2D"
  depthwiseconv2d_options {
    padding: SAME
    stride_w: 1
    stride_h: 1
    depth_multiplier: 1
    activation : RELU6
  }
  input: "ifm"
  input: "ker"
  input: "bias"
  output: "ofm"
}
input: "ifm"
input: "ker"
output: "ofm"