summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Pack_U8_000/test.recipe
blob: f0019998047b9e3629f5dba74f6b474609774866 (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
operand {
  name: "input"
  type: UINT8
  shape { dim: 2 dim: 4 dim: 3 }
  quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
}
operand {
  name: "input_1"
  type: UINT8
  shape { dim: 2 dim: 4 dim: 3 }
  quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
}
operand {
  name: "stack_4d"
  type: UINT8
  shape { dim: 2 dim: 2 dim: 4 dim: 3 }
  quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
}
operation {
  type: "Pack"
  pack_options {
    values_count: 2,
    axis: 1
  }
  input: "input"
  input: "input_1"
  output: "stack_4d"
}
input: "input"
input: "input_1"
output: "stack_4d"