summaryrefslogtreecommitdiff
path: root/compiler/enco/test/tflite/Regression_0003/test.recipe
blob: 693c455431b6cd2a0f7fa851432772c813b45216 (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
32
33
# Compilation SHOULD NOT fail even if all the inputs are constant
operand {
  name: "ifm"
  type: FLOAT32
  shape { dim: 1 dim: 3 dim: 3 dim: 2 }
  filler { tag: "constant" arg: "0.1" }
}
operand {
  name: "ker"
  type: FLOAT32
  shape { dim: 1 dim: 1 dim: 1 dim: 2 }
  filler { tag: "constant" arg: "0.2" }
}
operand {
  name: "bias"
  type: FLOAT32
  shape { dim: 1 }
  filler { tag: "constant" arg: "0.3" }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 1 dim: 3 dim: 3 dim: 1 }
}
operation {
  type: "Conv2D"
  conv2d_options { padding: VALID }
  input: "ifm"
  input: "ker"
  input: "bias"
  output: "ofm"
}
output: "ofm"