Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / ScatterNd_000 / test.recipe
1 operand {
2   name: "indices"
3   type: INT32
4   shape { dim: 2 dim: 1 }
5   filler {
6     tag: "constant"
7     arg: "0" arg: "2"
8   }
9 }
10 operand {
11   name: "updates"
12   type: FLOAT32
13   shape { dim: 2 dim: 4 dim: 4 }
14 }
15 operand {
16   name: "shape"
17   type: INT32
18   shape: { dim: 3 }
19   filler: {
20     tag: "constant"
21     arg: "4" arg: "4" arg: "4"
22   }
23 }
24 operand {
25   name: "ofm"
26   type: FLOAT32
27   shape { dim: 4 dim: 4 dim: 4 }
28 }
29 operation {
30   type: "ScatterNd"
31   scatter_nd_options {
32   }
33   input: "indices"
34   input: "updates"
35   input: "shape"
36   output: "ofm"
37 }
38 input: "indices"
39 input: "updates"
40 output: "ofm"