aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/util/memmapped_file_system.h
Commit message (Collapse)AuthorAge
* Replace all COMPILER_MSVC to _MSC_VER and _WIN32 accordingly (#18448)Gravatar Loo Rong Jie2018-04-12
| | | | | | | | * Replace all COMPILER_MSVC to _MSC_VER and _WIN32 accordingly * One more ARRAYSIZE to TF_ARRAYSIZE * Delete non-existing include
* Break FileSystem's dependency on ThreadPool.Gravatar A. Unique TensorFlower2018-03-30
| | | | PiperOrigin-RevId: 191092932
* Merge changes from github.Gravatar Andrew Harp2016-12-08
| | | | | | | | Additionally: - change single quotes to double quotes to make path rewriting easier - guard windows lib reference with PLATFORM_WINDOWS - fixed failing kmeans test Change: 141515942
* Change FileExists to return tensorflow::Status.Gravatar Jonathan Hseu2016-11-04
| | | | | | | | | | | Also done separately by @llhe at github.com/tensorflow/tensorflow/pull/5370. We needed to do this change internally to fix all callers. Motivation: The existing FileExists interface doesn't allow callers to distinguish between file not found vs. filesystem errors. Semantics changes: - gfile.Exists in Python now throws an exception for filesystem errors. It continues to return true/false if it can accurately determine whether a file exists. - RecursivelyCreateDir now returns errors for filesystem errors when calling FileExists. Change: 138224013
* Adding FileSystem::Stat to the core filesystem API. Implemented versions of ↵Gravatar A. Unique TensorFlower2016-07-12
| | | | | | it for all subclasses except for GCS File System for now. Change: 127282696
* TensorFlow: minor change functions in Env interface.Gravatar Vijay Vasudevan2016-06-16
| | | | | | | | | | Switches to return a std::unique_ptr<> to convey transfer of ownership. Keeps existing functions temporarily for backwards compatibility. Change file_system.h interface to switch entirely to the new interface, change all callers. If this breaks someone in the public, the interface change should be straightforward. Change: 125127028
* Update copyright for 3p/tf/core.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123900938
* Added a format for saving an inference graph that can be memmapped and an ↵Gravatar A. Unique TensorFlower2016-04-18
utility to convert a freezed graph into this format. Change: 120128412