summaryrefslogtreecommitdiff
path: root/compiler/tflchef/tests/explicit_bool/test.recipe
blob: 8f09edd1394a4da39a96b2ee8b238bf469a1e77d (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: "ifm1"
  type: BOOL
  shape { dim: 6 }
}
operand {
  name: "ifm2"
  type: BOOL
  shape { dim: 6 }
  filler {
    tag: "explicit"
    arg: "T"
    arg: "f"
    arg: "0"
    arg: "1"
    arg: "true"
    arg: "FALSE"
  }
}
operand {
  name: "ofm"
  type: BOOL
  shape { dim: 6 }
}
operation {
  type: "LogicalAnd"
  input: "ifm1"
  input: "ifm2"
  output: "ofm"
}
output: "ofm"