summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Concatenation_000/test.recipe
blob: 35641bd07a4687186fcbd8b51961df8aa0e22186 (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: FLOAT32
  shape { dim: 1 dim: 4 dim: 4 dim: 1 }
}
operand {
  name: "ifm2"
  type: FLOAT32
  shape { dim: 1 dim: 4 dim: 4 dim: 2 }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 1 dim: 4 dim: 4 dim: 3 }
}
operation {
  type: "Concatenation"
  concatenation_options {
    axis: 3
    activation: NONE
  }
  input: "ifm1"
  input: "ifm2"
  output: "ofm"
}
input: "ifm1"
input: "ifm2"
output: "ofm"