summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Unique_002/test.recipe
blob: 67b947ff85ad6c4f4008ea6bc55b46d38fdb774e (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
operand {
  name: "ifm"
  type: INT32
  shape { dim: 5 }
}
operand {
  name: "ofm"
  type: INT32
  shape { }
}
operand {
  name: "ofm_idx"
  type: INT32
  shape { dim: 5 }
}
operation {
  type: "Unique"
  unique_options {
    idx_out_type: INT32
  }
  input: "ifm"
  output: "ofm"
  output: "ofm_idx"
}
input: "ifm"
output: "ofm"
output: "ofm_idx"