MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / FilesExist

Function FilesExist

tensorflow/core/grappler/inputs/utils.cc:25–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 2

TEST_FFunction · 0.85

Calls 4

DefaultFunction · 0.85
FilesExistMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by 1

TEST_FFunction · 0.68