summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Transpose_000/test.recipe
blob: 82a85c13b118f5da4e7df9b43b53e9cc3cc3224a (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: 3 dim: 8 dim: 1 }
}
operand {
  name: "perm"
  type: INT32
  shape { dim: 3 }
  filler { tag: "explicit" arg: "1" arg: "2" arg: "0" }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 8 dim: 1 dim: 3 }
}

operation {
  type: "Transpose"
  transpose_options {
  }
  input: "ifm"
  input: "perm"
  output: "ofm"
}
input: "ifm"
output: "ofm"