aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/testdata/multi_add.json
blob: 97b931dba8b1050ecf91939d1d9dcea5e0ea56fb (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
  "version": 1,
  "operator_codes": [
    {
      "builtin_code": "ADD"
    }
  ],
  "subgraphs": [
    {
      "tensors": [
        { "shape": [ 1, 8, 8, 3 ], "name": "a" },
        { "shape": [ 1, 8, 8, 3 ], "name": "b" },
        { "shape": [ 1, 8, 8, 3 ], "name": "c" },
        { "shape": [ 1, 8, 8, 3 ], "name": "d" },
        { "shape": [ 1, 8, 8, 3 ], "name": "i" },
        { "shape": [ 1, 8, 8, 3 ], "name": "x" },
        { "shape": [ 1, 8, 8, 3 ], "name": "y" }
      ],
      "inputs": [ 0, 1, 2, 3 ],
      "outputs": [ 5, 6 ],
      "operators": [
        {
          "inputs": [ 1, 2 ],
          "outputs": [ 4 ],
          "builtin_options_type": "AddOptions",
          "builtin_options": {
          }
        },
        {
          "inputs": [ 0, 4 ],
          "outputs": [ 5 ],
          "builtin_options_type": "AddOptions",
          "builtin_options": {
          }
        },
        {
          "inputs": [ 3, 4 ],
          "outputs": [ 6 ],
          "builtin_options_type": "AddOptions",
          "builtin_options": {
          }
        }
      ]
    }
  ]
}