summaryrefslogtreecommitdiff
path: root/res/TensorFlowTests/UNIT_CustomOp_001/test.pbtxt
blob: ad673e0a7eee111bcfea1a228ade5db10bc8197f (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
# test case discussed in https://github.sec.samsung.net/STAR/nnfw/issues/5607
node {
  name: "input_00"
  op: "Placeholder"
  attr {
    key: "dtype"
    value {
      type: DT_FLOAT
    }
  }
  attr {
    key: "shape"
    value {
      shape {
        dim {
          size: 10
        }
      }
    }
  }
}
node {
  name: "FillFrom"
  op: "FillFrom"
  input: "input_00"
  attr {
    key: "idx"
    value {
      i: 3
    }
  }
  attr {
    key: "val"
    value {
      f: 1.1
    }
  }
}