| 34 | } |
| 35 | |
| 36 | static string OpsHistoryFile(const string& ops_prefix, |
| 37 | const string& history_version) { |
| 38 | return io::JoinPath(ops_prefix, strings::StrCat("compat/ops_history.", |
| 39 | history_version, ".pbtxt")); |
| 40 | } |
| 41 | |
| 42 | static string FileNameFromOpName(const string& op_name) { |
| 43 | return strings::StrCat(op_name, ".pbtxt"); |
no test coverage detected