aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
Commit message (Collapse)AuthorAge
* Remove unused files.Gravatar Yifei Feng2016-09-19
|
* Merge changes from github.Gravatar A. Unique TensorFlower2016-08-25
| | | | Change: 131310818
* Fix genrule Python execution problem with Python3.Gravatar Kiril Gorovoy2016-06-06
| | | | Change: 124202095
* Phase 1 of moving TensorFlow Serving SessionBundle to tensorflow/contrib.Gravatar Noah Fiedel2016-06-03
| | | | Change: 123975418
* Merge changes from github.Gravatar Vijay Vasudevan2016-05-27
| | | | Change: 123427036
* Pass --define=using_cuda_nvcc to CUDA builds.Gravatar A. Unique TensorFlower2016-05-13
| | | | | | | | This has no practical effect, as CUDA builds are always with nvcc, but it lets us modify the build config rule //third_party/gpus/cuda:using_nvcc so it returns true, rather than false, for CUDA builds. Change: 122288952
* Bring back fast_cpp_protos bazel configuration and remove 64MB limit of ↵Gravatar Dan Smilkov2016-03-28
| | | | | | | | | | protobufs. This speeds-up graph serialization by ~15x for users building TensorFlow from source. Note that you can now install a faster pip binary for protobuf using the instructions in https://github.com/tensorflow/tensorflow/commit/8ac009728db931ef3119a337bd23250c89bc7efe This only affects building and running from within the bazel environment. Change: 118374862
* TensorFlow: remove fast_cpp_protos and oversize_protos options fromGravatar Vijay Vasudevan2016-03-08
| | | | | bazelrc template, since they don't actually do anything. Change: 116606748
* Changed the cuda_crosstool_condition to check for a define of using_cuda.Gravatar Manjunath Kudlur2016-03-07
| | | | | | Checking for a specific crosstool_top directory doesn't work when TensorFlow is a sub-module for a different project. Change: 116592676
* Enable deserializing protos > 64MB in length.Gravatar Manjunath Kudlur2016-02-18
| | | | | Update protobuf commit Change: 114990608
* Running our linter on a lot of files.Gravatar Vijay Vasudevan2016-01-24
| | | | Change: 112920860
* TensorFlow: upstream changes to git.Gravatar Vijay Vasudevan2015-12-10
| | | | | | | | | | | | | | | | | | | | | Change 109922312 Update dockerfiles and instructions. This CL does two things: * updates dockerfiles to use 0.6.0 * updates the instructions for the new tag format. Change 109920508 Fix broken cast_op_test Change 109919316 Enforce converting to int64 for SparseTensor indices and shape Change 109916130 Fix imagenet for Python 3 It needed some binary file modes and an iteritems -> items. Change 109912827 Enable fast c++ implementation in protobuf's python interface. Base CL: 109922840
* TensorFlow: Upstream changes to git.Gravatar Vijay Vasudevan2015-12-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change 109344341 Teach ./configure about Python 3 (and other minor Python 3 issues) ./configure now writes bazel.rc based on a bazel.rc.template, which gives us a place to tell bazel which version of Python we were using. Also fix a few tests whose Python 3 support had degraded. The only thing left before we have Python 3 support is https://github.com/google/protobuf/pull/1023 Change 109343002 Update ops.pbtxt to reflect 109321497. Change 109342838 Do memory deallocation outside the critical section in gpu_event_mgr.cc. Change 109334210 PTB LSTM example: use slicing instead of splitting the inputs. Change 109332238 Cleanup TensorBoard local development environment Change 109331051 Use __all__ in __init__.py to restrict exported modules Specifically, __all__ is now anything that (1) doesn't begin with an underscore and (2) isn't a non-whitelisted module. This fixes one tiny piece of b/25561952. Specifically, the following no longer exist: tf.np, tf.math_ops, and tf.variables. tf.ops and tf.tensor_util still exist but shouldn't; that will have to wait for a later CL. Change 109327154 tf.tuple allow Tensors to be passed in as control_inputs like tf.control_dependencies. Change 109324239 Make tf.control_dependencies(None) clear the control dependencies. Use that to prevent ops created for Variables to inherit the current control dependencies. This fixes issues when using ExponentialMovingAverages with control dependencies. Change 109323719 Added support for boolean tf.scatter_update. Base CL: 109348398
* TensorFlow: Initial commit of TensorFlow library.Gravatar Manjunath Kudlur2015-11-06
TensorFlow is an open source software library for numerical computation using data flow graphs. Base CL: 107276108