(self, model_tag, graph_data, output_path)
| 83 | 'micro_net_def.h.jinja2', output_path) |
| 84 | |
| 85 | def gen_graph_data(self, model_tag, graph_data, output_path): |
| 86 | embed_data = np.frombuffer(graph_data, dtype=np.uint8) |
| 87 | self.gen_micro_source_from_array(model_tag, embed_data, |
| 88 | 'micro_graph_data.h.jinja2', |
| 89 | output_path) |
| 90 | |
| 91 | def gen_ops_data(self, model_tag, op_src_path_list, |
| 92 | op_class_name_list, output_path): |
no test coverage detected