summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/ReduceAny_dynamic_000/test.recipe
blob: 427bd05f17b72ef1cdaa714e069a5f4b2768427a (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: "ifm"
  type: BOOL
  shape { dim: 1 dim: 3 dim: 4 }
  shape_signature { dim: -1 dim: 3 dim: 4 }
}
operand {
  name: "reduction_indices"
  type: INT32
  shape { dim: 3 }
  filler {
    tag: "explicit"
    arg: "0" arg: "1" arg: "2"
  }
}
operand {
  name: "ofm"
  type: BOOL
  shape { }
}
operation {
  type: "ReduceAny"
  reduce_any_options {
    keep_dims: false
  }
  input: "ifm"
  input: "reduction_indices"
  output: "ofm"
}
input: "ifm"
output: "ofm"