summaryrefslogtreecommitdiff
path: root/compiler/circlechef/tests/short_int_datatype/test.recipe
blob: e0f58252783fdcb04490cc9102e3ccb5c47f8a7b (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
32
operand {
  name: "ifm1"
  type: INT16
  shape { dim: 1 dim: 4 dim: 4 dim: 3 }
}
operand {
  name: "constant"
  type: INT16
  shape { dim: 1 dim: 4 dim: 3 dim: 4 }
  filler {
    tag: "gaussian"
    arg: "3.0"
    arg: "10.0"
  }
}
operand {
  name: "ofm"
  type: INT16
  shape { dim: 1 dim: 4 dim: 4 dim: 4 }
}
operation {
  type: "BatchMatMul"
  input: "ifm1"
  input: "constant"
  output: "ofm"
  batch_matmul_options {
    adjoint_lhs: false
    adjoint_rhs: false
  }
}
input: "ifm1"
output: "ofm"