summaryrefslogtreecommitdiff
path: root/compiler/enco/test/tflite/Concat_001/test.recipe
blob: 7adaf16456295399e4dc040424e53e67e67ecb9b (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
# Concatenate two feature maps along "width" dimension
operand {
  name: "ifm1"
  type: FLOAT32
  shape { dim: 1 dim: 1 dim: 1 dim: 1 }
}
operand {
  name: "ifm2"
  type: FLOAT32
  shape { dim: 1 dim: 1 dim: 2 dim: 1 }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 1 dim: 1 dim: 3 dim: 1 }
}
operation {
  type: "Concatenation"
  concatenation_options {
    axis: 2
    activation: NONE
  }
  input: "ifm1"
  input: "ifm2"
  output: "ofm"
}
input: "ifm1"
input: "ifm2"
output: "ofm"