aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/aot/test_graph_tfunknownop.pbtxt
blob: 48b881bb9462dc30944a1377d4d2a2c58b9dfe43 (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
47
48
49
50
51
52
53
54
55
56
57
58
node {
  name  : "x_const"
  op    : "Const"
  attr {
    key: "value"
    value {
      tensor {
        dtype: DT_INT32
        tensor_shape { dim { size: 1 } }
        int_val: 1
      }
    }
  }
  attr { key  : "dtype" value { type: DT_INT32 } }
}
node {
  name  : "y_const"
  op    : "Const"
  attr {
    key: "value"
    value {
      tensor {
        dtype: DT_INT32
        tensor_shape { dim { size: 1 } }
        int_val: 2
      }
    }
  }
  attr { key: "dtype" value { type: DT_INT32 } }
}
node {
  name  : "x_y_sum"
  op    : "Add"
  input : "x_const"
  input : "y_const"
  attr { key  : "T" value { type: DT_INT32 } }
}
node {
  name  : "z"
  op    : "SomeUnknownOp"
  input : "x_const"
}
node {
  name  : "z_identity"
  op    : "Identity"
  input : "z:1"
  attr { key  : "T" value { type: DT_INT32 } }
}
node {
  name  : "x_z_sum"
  op    : "Add"
  input : "x_const"
  input : "z_identity"
  attr { key  : "T" value { type: DT_INT32 } }
}
versions {
  producer: 15
}