aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/session_bundle/BUILD
Commit message (Collapse)AuthorAge
* Windows: Enable tensorflow/contrib in Bazel build (Second try)Gravatar A. Unique TensorFlower2018-04-02
| | | | | | This reverts commit 4e108ef30d7cd7ae5e1c550ec5ae27e79b8c6e39. PiperOrigin-RevId: 191391075
* Remove all_opensource_files. It's not needed any more.Gravatar Martin Wicke2018-03-28
| | | | PiperOrigin-RevId: 190878279
* Internal changeGravatar A. Unique TensorFlower2018-03-19
| | | | PiperOrigin-RevId: 189613870
* Automated g4 rollback of changelist 189231636Gravatar A. Unique TensorFlower2018-03-15
| | | | PiperOrigin-RevId: 189258641
* Merge changes from github.Gravatar Jacques Pienaar2018-03-15
| | | | PiperOrigin-RevId: 189231636
* Internal changeGravatar A. Unique TensorFlower2018-03-13
| | | | PiperOrigin-RevId: 188880419
* PiperOrigin-RevId: 188860028Gravatar A. Unique TensorFlower2018-03-13
|
* tfdbg: add reference to the TensorBoard Debugger Plugin in README.mdGravatar Shanqing Cai2018-03-13
| | | | PiperOrigin-RevId: 188828898
* PiperOrigin-RevId: 188860028Gravatar A. Unique TensorFlower2018-03-13
|
* tfdbg: add reference to the TensorBoard Debugger Plugin in README.mdGravatar Shanqing Cai2018-03-13
| | | | PiperOrigin-RevId: 188828898
* PiperOrigin-RevId: 188860028Gravatar A. Unique TensorFlower2018-03-13
|
* BUILD cleanup in contrib/...Gravatar A. Unique TensorFlower2017-10-30
| | | | PiperOrigin-RevId: 173889798
* Remove RTLD_GLOBAL when loading pywrap_tensorflowGravatar Allen Lavoie2017-09-21
| | | | | | | | | | | | | | Splits out a shared object (//tensorflow/libtensorflow_framework.so) with core TensorFlow functionality but neither ops nor kernels. This object does include registries for ops, kernels, filesystems, etc. The expectation is that shared objects containing custom ops will have a runtime dependency on this framework shared object: TensorFlow will load the custom op shared object, and the custom op shared object will use the symbols from the framework shared object to register its ops/kernels/etc. rather than (as before this change) relying on those symbols being in the global symbol table. In this mode, TensorFlow artifacts (_pywrap_tensorflow.so for Python, libtensorflow.so for the C API; currently excluding Android artifacts) will depend on the framework shared object, which will be packaged with the Python pip package and other language distributions. This means that custom ops targeting the framework shared object will work in any language (C++, Java, Go; previously custom ops in these languages required custom Bazel builds). Adds a config option which reproduces the old behavior (--config=monolithic), which for Python means building a monolithic pywrap_tensorflow shared object and loading its symbols into the global symbol table (with RTLD_GLOBAL). As before, there will be no extra-Bazel custom op support for other languages when compiling in this mode. Does not change behavior on Windows; the cmake build is still monolithic. Requires using tf_cc_binary, tf_cc_test, and (rarely) tf_cc_shared_object rules to link in the framework shared object when adding new TensorFlow build rules. PiperOrigin-RevId: 169572746
* Automated g4 rollback of changelist 158565259Gravatar Gunhan Gulsoy2017-09-14
| | | | PiperOrigin-RevId: 168650887
* Increase session_bundle_test to a medium test.Gravatar A. Unique TensorFlower2017-09-05
| | | | PiperOrigin-RevId: 167672587
* BUILD cleanupGravatar A. Unique TensorFlower2017-08-25
| | | | PiperOrigin-RevId: 166461274
* BUILD cleanup for tensorflow/contrib/session_bundleGravatar A. Unique TensorFlower2017-08-08
| | | | PiperOrigin-RevId: 164584985
* Mark SessionBundle targets as no longer supported.Gravatar Sukriti Ramesh2017-07-11
| | | | PiperOrigin-RevId: 161616162
* Further BUILD cleanup in tensorflow/contrib/...Gravatar A. Unique TensorFlower2017-07-11
| | | | PiperOrigin-RevId: 161609382
* Adjust test sizesGravatar A. Unique TensorFlower2017-06-09
| | | | PiperOrigin-RevId: 158565259
* Remove unused BUILD dependenciesGravatar A. Unique TensorFlower2017-05-30
| | | | PiperOrigin-RevId: 157473460
* Replace all_files data dependencies of build_pip_package with py_library targetsGravatar Shanqing Cai2017-03-10
| | | | | | | Benefits of this CL: 1) Removes ~70 python unit test files from the pip wheel. 2) Makes it easier to track which files are included in the pip wheel through bazel queries. Change: 149810103
* Mark Exporter and SessionBundle as deprecated. Add recommendation to switch toGravatar Sukriti Ramesh2017-03-03
| | | | | SavedModel. Change: 149158386
* Replace pip testing script with bazel.Gravatar Gunhan Gulsoy2017-02-13
| | | | Change: 147423640
* Automated rollback of change 141461172Gravatar Li Lao2017-01-19
| | | | Change: 145017462
* Remove so many more hourglass importsGravatar Justine Tunney2016-12-29
| | | | Change: 143230429
* Remove hourglass imports from kernel_testsGravatar Justine Tunney2016-12-14
| | | | Change: 142080137
* Replace SessionBundle half_plus_two genrule with export golden files.Gravatar Li Lao2016-12-13
| | | | Change: 141896093
* Replace saved_model_half_plus_two_data genrule with SavedModel golden files.Gravatar Li Lao2016-12-12
| | | | Change: 141847925
* Disable all tests depending on *half_plus_two* genrules.Gravatar Gunhan Gulsoy2016-12-08
| | | | Change: 141461172
* Implement bundle_shim.py which allows a system to load both legacy session ↵Gravatar A. Unique TensorFlower2016-12-06
| | | | | | | bundle and SavedModel bundle. This is intended to be used during migration to SavedModel format. Change: 141257689
* Add flags for output dir in saved_model_half_plus_two.py. Remove static ↵Gravatar Li Lao2016-11-28
| | | | | | Saved Model of half plus two and its dependency. Change: 140441828
* Change visibility of the SavedModel shim to public.Gravatar Kiril Gorovoy2016-11-16
| | | | | Delete bundle_shim_constants.h and use the new constant in signature_constants.h instead. Change: 139399882
* Add tag constants for SavedModel cc.Gravatar Sukriti Ramesh2016-10-18
| | | | Change: 136521066
* Make the session_bundle and signature libraries depend on their lite version.Gravatar A. Unique TensorFlower2016-10-12
| | | | | | This avoids ODR violations that were possible before as we included a cc file in 2 different libraries. Change: 135934905
* session_bundle: do not hard-code V2 checkpoint's extension.Gravatar Zongheng Yang2016-10-12
| | | | Change: 135925430
* Add signature constants for SavedModel in cc.Gravatar Sukriti Ramesh2016-10-10
| | | | Change: 135708424
* Add shim that can read SavedModel bundle and session bundle.Gravatar Sukriti Ramesh2016-10-07
| | | | Change: 135484749
* Automated rollback of change 135391050Gravatar A. Unique TensorFlower2016-10-06
| | | | Change: 135414551
* Add support to read checkpoint v2 exported models from session_bundle.Gravatar A. Unique TensorFlower2016-10-06
| | | | | | | TESTED: - passed opensource_build - passed unit tests Change: 135391050
* Initial version of bundle-shim to convert from SessionBundle to ↵Gravatar Sukriti Ramesh2016-09-30
| | | | | | SavedModelBundle. Change: 134805671
* Fix #4312.Gravatar A. Unique TensorFlower2016-09-13
| | | | Change: 132966570
* Portability improvements.Gravatar A. Unique TensorFlower2016-09-07
| | | | Change: 132490206
* Port python session_bundle from tensorflow_serving/session_bundle to ↵Gravatar Kiril Gorovoy2016-07-19
| | | | | | tensorflow/contrib/session_bundle. Change: 127862721
* Automated rollback of change 127590512Gravatar Vijay Vasudevan2016-07-15
| | | | Change: 127608996
* Port python session_bundle from tensorflow_serving/session_bundle to ↵Gravatar Kiril Gorovoy2016-07-15
| | | | | | tensorflow/contrib/session_bundle. Change: 127590512
* Delete tensorflow_serving/session_bundle C++ code (copy exists in ↵Gravatar Kiril Gorovoy2016-07-15
| | | | | | | tensorflow/contrib/session_bundle) and introduce forwarding headers instead. This doesn't change any behavior since the copies are identical, but moves forward with the migration, avoids code duplication, and eliminates the possibility of this code diverging. Change: 127556144
* s/Tensorflow/TensorFlow. A losing battle :)Gravatar Vijay Vasudevan2016-07-13
| | | | Change: 127324936
* Make tensorflow_serving/session_bundle compatible with internal build rules.Gravatar Yusef Shafi2016-07-01
| | | | Change: 126438387
* Adding utilities to export Estimators and ExportMonitor for continues export.Gravatar Illia Polosukhin2016-06-27
| | | | | Clean up session_bundle/exporter to be importable. Change: 126029457