summaryrefslogtreecommitdiff
path: root/compiler/enco/test/tflite/Concat_003/test.recipe
blob: 8f1b64ea68fe2915b1df068c8a1889cf996612b0 (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 "batch" dimension
operand {
  name: "ifm1"
  type: FLOAT32
  shape { dim: 1 dim: 1 dim: 1 dim: 1 }
}
operand {
  name: "ifm2"
  type: FLOAT32
  shape { dim: 2 dim: 1 dim: 1 dim: 1 }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 3 dim: 1 dim: 1 dim: 1 }
}
operation {
  type: "Concatenation"
  concatenation_options {
    axis: 0
    activation: NONE
  }
  input: "ifm1"
  input: "ifm2"
  output: "ofm"
}
input: "ifm1"
input: "ifm2"
output: "ofm"