Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / CircleRecipes / BCQFullyConnected_001 / test.recipe
1 operand {
2   name: "ifm"
3   type: FLOAT32
4   shape { dim: 32 dim: 1 }
5 }
6 operand {
7   name: "w_a"
8   type: FLOAT32
9   shape { dim: 32 }
10   filler {
11     tag: "gaussian"
12     arg: "0.0"
13     arg: "1.0"
14   }
15 }
16 operand {
17   name: "w_b"
18   type: INT32
19   shape { dim: 32 dim: 1 }
20   filler {
21     tag: "gaussian"
22     arg: "0.0"
23     arg: "32.0"
24   }
25 }
26 operand {
27   name: "w_c"
28   type: INT32
29   shape { dim: 1 dim: 2 }
30   filler {
31     tag: "explicit"
32     arg: "1"
33     arg: "32"
34   }
35 }
36 operand {
37   name: "ofm"
38   type: FLOAT32
39   shape { dim: 32 dim: 1 }
40 }
41 operation {
42   type: "BCQFullyConnected"
43   input: "ifm"
44   input: "w_a"
45   input: "w_b"
46   input: ""
47   input: "w_c"
48   output: "ofm"
49   bcq_fully_connected_options {
50     weights_hidden_size: 32
51     activation: NONE
52   }
53 }
54 input: "ifm"
55 output: "ofm"