| 23 | namespace grappler { |
| 24 | |
| 25 | bool FilesExist(const std::vector<string>& files, std::vector<Status>* status) { |
| 26 | return Env::Default()->FilesExist(files, status); |
| 27 | } |
| 28 | |
| 29 | bool FilesExist(const std::set<string>& files) { |
| 30 | return FilesExist(std::vector<string>(files.begin(), files.end()), nullptr); |