File size: 1,767 Bytes
5178306
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
59
60
61
62
63
64
65
66
67
68
69
syntax = "proto3";

package tensorflow;
option cc_enable_arenas = true;
option java_outer_classname = "GraphTransferInfoProto";
option java_multiple_files = true;
option java_package = "org.tensorflow.framework";

import "tensorflow/core/framework/types.proto";

// Protocol buffer representing a handle to a tensorflow resource. Handles are
// not valid across executions, but can be serialized back and forth from within
// a single run.
message GraphTransferInfo {
  enum Destination {
    NOP = 0;
    HEXAGON = 1;
  }
  message NodeInput {
    int32 node_id = 1;
    int32 output_port = 2;
  }
  message NodeInfo {
    string name = 1;
    int32 node_id = 2;
    string type_name = 3;
    int32 soc_op_id = 4;
    int32 padding_id = 5;
    int32 input_count = 6;
    int32 output_count = 7;
  };
  message ConstNodeInfo {
    string name = 1;
    int32 node_id = 2;
    repeated int64 shape = 3;
    bytes data = 4;
    DataType dtype = 5;
  };
  message NodeInputInfo {
    int32 node_id = 1;
    repeated NodeInput node_input = 2;
  };
  message NodeOutputInfo {
    int32 node_id = 1;
    repeated int32 max_byte_size = 2;
  };
  message GraphInputNodeInfo {
    string name = 1;
    repeated int64 shape = 2;
    DataType dtype = 3;
  }

  message GraphOutputNodeInfo {
    string name = 1;
    repeated int64 shape = 2;
    DataType dtype = 3;
  }

  repeated NodeInfo node_info = 1;
  repeated ConstNodeInfo const_node_info = 2;
  repeated NodeInputInfo node_input_info = 3;
  repeated NodeOutputInfo node_output_info = 4;
  // Input Node parameters of transferred graph
  repeated GraphInputNodeInfo graph_input_node_info = 5;
  repeated GraphOutputNodeInfo graph_output_node_info = 6;
  // Destination of graph transfer
  Destination destination = 7;
};