| 1098 | } |
| 1099 | |
| 1100 | string GetPythonWrappers(const char* op_list_buf, size_t op_list_len) { |
| 1101 | string op_list_str(op_list_buf, op_list_len); |
| 1102 | OpList ops; |
| 1103 | ops.ParseFromString(op_list_str); |
| 1104 | |
| 1105 | ApiDefMap api_def_map(ops); |
| 1106 | return GetPythonOps(ops, api_def_map, {}, false); |
| 1107 | } |
| 1108 | |
| 1109 | } // namespace tensorflow |
nothing calls this directly
no test coverage detected