summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/LessEqual_U8_000/test.recipe
blob: c83f4d4b4e3f3934bc0729f299bbd075c0662f23 (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
operand {
  name: "ifm1"
  type: UINT8
  shape { dim: 1 dim: 4 dim: 4 dim: 3 }
  quant { min: -1 max: 1 scale: 0.0078431373 zero_point: 128 }
}
operand {
  name: "ifm2"
  type: UINT8
  shape { dim: 1 dim: 4 dim: 4 dim: 3 }
  quant { min: -1 max: 1 scale: 0.0078431373 zero_point: 128 }
}
operand {
  name: "ofm"
  type: BOOL
  shape { dim: 1 dim: 4 dim: 4 dim: 3 }
}
operation {
  type: "LessEqual"
  lessequal_options {
  }
  input: "ifm1"
  input: "ifm2"
  output: "ofm"
}
input: "ifm1"
input: "ifm2"
output: "ofm"