tensorflow::Env::~Env()

virtual tensorflow::Env::~Env()=default

tensorflow::Env::Stat()

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

tensorflow::Env::StartThread()

virtual Thread* tensorflow::Env::StartThread(const ThreadOptions &thread_options, const string &name, std::function< void()> fn) TF_MUST_USE_RESULT=0 Returns a new thread that is running fn() and is identified (for debugging/performance-analysis) by "name". Caller takes ownership of the result and must delete it eventually (the deletion will block until fn() stops running).

tensorflow::Env::SleepForMicroseconds()

virtual void tensorflow::Env::SleepForMicroseconds(int64 micros)=0 Sleeps/delays the thread for the prescribed number of micro-seconds.

tensorflow::Env::SchedClosureAfter()

virtual void tensorflow::Env::SchedClosureAfter(int64 micros, std::function< void()> closure)=0

tensorflow::Env::SchedClosure()

virtual void tensorflow::Env::SchedClosure(std::function< void()> closure)=0

tensorflow::Env::RenameFile()

Status tensorflow::Env::RenameFile(const string &src, const string &target) Renames file src to target. If target already exists, it will be replaced.

tensorflow::Env::RegisterFileSystem()

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

tensorflow::Env::NowSeconds()

virtual uint64 tensorflow::Env::NowSeconds() Returns the number of seconds since some fixed point in time. Only useful for computing deltas of time.

tensorflow::Env::NowMicros()

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