summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Unique_001/test.recipe
blob: d654f79b943a58b0e58421744521107bceb7cbcd (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: FLOAT32
  shape { dim: 4 }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 0 }
}
operand {
  name: "ofm_idx"
  type: INT64
  shape { dim: 4 }
}
operation {
  type: "Unique"
  unique_options {
    idx_out_type: INT64
  }
  input: "ifm"
  output: "ofm"
  output: "ofm_idx"
}
input: "ifm"
output: "ofm"
output: "ofm_idx"