Home | History | Annotate | Download | only in hvx_ops_support_checker

Lines Matching refs:INFO

59   LOG(INFO) << "Node(" << node_def.name() << ")";
60 LOG(INFO) << " op: " << node_def.op();
62 LOG(INFO) << " Input: " << input;
73 LOG(INFO) << " Output(" << i << "): " << DataType_Name(data_types.at(i))
79 LOG(INFO) << "Remote fused graph found.";
80 RemoteFusedGraphExecuteInfo info;
87 info.ParseFromString(serialized_proto);
88 LOG(INFO) << "Node name: " << node_def.name();
89 LOG(INFO) << "Executor name: " << info.executor_name();
90 for (const string& input : info.graph_input_node_name()) {
91 LOG(INFO) << "Input: " << input;
94 info.default_graph_input_tensor_shape()) {
95 LOG(INFO) << "Input shape type: " << shape_type.DebugString();
97 for (const string& output : info.graph_output_node_name()) {
98 LOG(INFO) << "Output: " << output;
101 info.default_graph_output_tensor_shape()) {
102 LOG(INFO) << "Output shape type: " << shape_type.DebugString();
104 const int subgraph_node_size = info.remote_graph().node_size();
105 LOG(INFO) << "Nodes in the graph: " << subgraph_node_size;
107 LOG(INFO) << "node(" << i << "): " << info.remote_graph().node(i).name();
116 LOG(INFO) << "Checking " << graph_def.node_size() << " nodes";
117 LOG(INFO) << "dump_all_nodes = " << dump_all_nodes
139 LOG(INFO) << "\n";
140 LOG(INFO) << "Unsupported ops:";
143 LOG(INFO) << "(" << (++count) << ") " << op_type;
146 LOG(INFO) << "All ops supported!";
148 LOG(INFO) << count << " ops are not supported.";