| 1090 | } // namespace |
| 1091 | |
| 1092 | void PrintPythonOps(const OpList& ops, const ApiDefMap& api_defs, |
| 1093 | const std::vector<string>& hidden_ops, bool require_shapes, |
| 1094 | const string& source_file_name) { |
| 1095 | printf("%s", GetPythonOps(ops, api_defs, hidden_ops, require_shapes, |
| 1096 | source_file_name) |
| 1097 | .c_str()); |
| 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); |
no test coverage detected