tensorflow::EnvWrapper::SleepForMicroseconds()

void tensorflow::EnvWrapper::SleepForMicroseconds(int64 micros) override Sleeps/delays the thread for the prescribed number of micro-seconds.

tensorflow::EnvWrapper::SchedClosure()

void tensorflow::EnvWrapper::SchedClosure(std::function< void()> closure) override

tensorflow::EnvWrapper::GetSymbolFromLibrary()

Status tensorflow::EnvWrapper::GetSymbolFromLibrary(void *handle, const char *symbol_name, void **symbol) override

tensorflow::EnvWrapper::NowMicros()

uint64 tensorflow::EnvWrapper::NowMicros() override Returns the number of micro-seconds since some fixed point in time. Only useful for computing deltas of time.

tensorflow::EnvWrapper::RegisterFileSystem()

Status tensorflow::EnvWrapper::RegisterFileSystem(const string &scheme, FileSystemRegistry::Factory factory) override

tensorflow::EnvWrapper::LoadLibrary()

Status tensorflow::EnvWrapper::LoadLibrary(const char *library_filename, void **handle) override

tensorflow::EnvWrapper::GetRegisteredFileSystemSchemes()

Status tensorflow::EnvWrapper::GetRegisteredFileSystemSchemes(std::vector< string > *schemes) override Returns the file system schemes registered for this Env .

tensorflow::Env::Stat()

Status tensorflow::Env::Stat(const string &fname, FileStatistics *stat) Obtains statistics for the given path.

tensorflow::EnvWrapper

An implementation of Env that forwards all calls to another Env . May be useful to clients who wish to override just part of the functionality of another Env . Member Details tensorflow::EnvWrapper::EnvWrapper(Env *t) Initializes an EnvWrapper that delegates all calls to *t. tensorflow::EnvWrapper::~EnvWrapper() Env* tensorflow::EnvWrapper::target() const Returns the target to which this Env forwards all calls. Status tensorflow::EnvWrapper::GetFileSystemForFile(const string &fname, FileSys

tensorflow::EnvWrapper::~EnvWrapper()

tensorflow::EnvWrapper::EnvWrapper(Env *t) Initializes an EnvWrapper that delegates all calls to *t.