| 32 | } |
| 33 | |
| 34 | std::string ParseCkptFileName(const std::string& ckpt_dir, |
| 35 | const std::string& fname) { |
| 36 | auto prefix = SplitBasename(fname).first; |
| 37 | return io::JoinPath(ckpt_dir, prefix); |
| 38 | } |
| 39 | |
| 40 | int64 ParseMetaFileName(const std::string& fname) { |
| 41 | auto base_name = io::Basename(fname); |
no test coverage detected