aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* Fix range error from python3 on Mac.Gravatar Xiaoqiang Zheng2016-03-22
| | | | Change: 117865583
* Test tf.complex_abs in cwise_ops_test.Gravatar RJ Ryan2016-03-22
| | | | Change: 117862980
* Code cleanups as per style conventions.Gravatar A. Unique TensorFlower2016-03-22
| | | | Change: 117859536
* fixed typo in websiteGravatar Olivia Nordquist2016-03-22
| | | | Change: 117854099
* Re-arranging tensorflow contrib targets.Gravatar A. Unique TensorFlower2016-03-22
| | | | Change: 117849583
* Set size for remaining tensorflow testsGravatar Geoffrey Irving2016-03-22
| | | | Change: 117839211
* Remove size = "medium" default from tensorflow.bzl functionsGravatar Geoffrey Irving2016-03-22
| | | | | We want explicit size arguments for all tests. Change: 117835174
* Changing get_binary_predictions_* methods in sdca_ops_test.py to return an ↵Gravatar A. Unique TensorFlower2016-03-22
| | | | | | integer and adjusting some tests accordingly Change: 117834924
* Remove size = "medium" default from tensorflow.bzl functionsGravatar Geoffrey Irving2016-03-22
| | | | | We want explicit size arguments for all tests. Change: 117832476
* Adding a gradient to ComplexAbs.Gravatar A. Unique TensorFlower2016-03-22
| | | | Change: 117831771
* Override the default message size limits in TensorFlow gRPC.Gravatar Derek Murray2016-03-22
| | | | | | | | | This prevents errors when large tensor constants are added to the graph, large values are fed to a step, and large values are fetched from a step. Thanks to @ms705 for uncovering this issue. Change: 117830058
* Fix cifar tutorial for bool strictness.Gravatar Martin Wicke2016-03-22
| | | | Change: 117828297
* Expose filegroups from the android example.Gravatar A. Unique TensorFlower2016-03-22
| | | | Change: 117827602
* Mark more tests as size = "small"Gravatar Geoffrey Irving2016-03-22
| | | | Change: 117825911
* Add a half type to TensorFlow core, based on Eigen::half.Gravatar A. Unique TensorFlower2016-03-22
| | | | | | | | | | Note that this is only the type, not support for it in any ops, so it is not useful for anything yet. In particular, neither TF_CALL_REAL_NUMBER_TYPES nor TF_CALL_GPU_NUMBER_TYPES list Eigen::half, so even though a lot of ops will end up declaring support for the new type, calling them will fail at runtime. Change: 117825461
* Use tf.group in rnn benchmark.Gravatar Yuan Yu2016-03-22
| | | | Change: 117796203
* BUGFIX: Correct the naming scheme used in weighted_moving_average.Gravatar A. Unique TensorFlower2016-03-21
| | | | | | Now, the signature is (..., name=None) and variable scope uses name and default_name correctly, allowing the default name to be uniquified. Change: 117787114
* Add GPU support to Variable and Assign for all POD typesGravatar Geoffrey Irving2016-03-21
| | | | | | | Previously only float and double variables were allowed on the GPU. Now anything other than string works. The same goes for Assign. AssignAdd and AssignSub have been left alone for now. Change: 117786325
* Add a SparseAdd op that adds up two SparseTensors.Gravatar Zongheng Yang2016-03-21
| | | | | This CL provides a CPU kernel implementation. Change: 117778151
* Mark a bunch of tests "small" to reduce timeoutsGravatar Geoffrey Irving2016-03-21
| | | | | | This should be everything except for except for python, tensorboard, cc, contrib, and tools. Change: 117774679
* Change jpeg decoding to record the number of rows processed, instead of theGravatar A. Unique TensorFlower2016-03-21
| | | | | fraction processed. Also avoid one case of int overflow. Change: 117774225
* Write zero values for GPU gather when the index is out of bounds.Gravatar Eugene Brevdo2016-03-21
| | | | Change: 117767826
* Enable tf.sign for complex64.Gravatar RJ Ryan2016-03-21
| | | | Change: 117767157
* When variable op scope fails, give some indication about where the variable ↵Gravatar A. Unique TensorFlower2016-03-21
| | | | | | was originally defined. Change: 117766780
* In DecodePng operator's Convert8to16 function, force height*row_bytesGravatar A. Unique TensorFlower2016-03-21
| | | | | computations to use 64 bits, to avoid overflow. Change: 117766779
* Rename RunOutputs -> RunMetadata proto.Gravatar Dan Smilkov2016-03-21
| | | | | | | Reason: it can be confusing to have session.run(ops, run_outputs=...) as users might get confused that run_outputs contains the outputs of the ops that are passed. Or in the C++ API it is even more confusing since we have Session.Run(..., std::vector<Tensor>* outputs, RunOutputs* run_outputs) Change: 117764542
* In DecodePng, verify that the width, height, and total size of the image to beGravatar A. Unique TensorFlower2016-03-21
| | | | | decoded are within a reasonable bounds. Change: 117761753
* In jpeg Uncompress, expose nwarn as an int64* to be consistent with theGravatar A. Unique TensorFlower2016-03-21
| | | | | underlying library. Change: 117761679
* Add a scan operator, similar to Theano's scan.Gravatar Yuan Yu2016-03-21
| | | | Change: 117756292
* Adding more types for __ANDROID_TYPES_FULL__ profile.Gravatar A. Unique TensorFlower2016-03-21
| | | | Change: 117755581
* Improve input validation of SparseSegmentReduction ops. Also addGravatar Josh Levenberg2016-03-21
| | | | | | validation that all output is written (or an error is generated) for all the SegmentReduction ops. Change: 117748193
* Adding end to end tests in TensorBoard.Gravatar Dan Smilkov2016-03-21
| | | | | | | Firing custom "rendered" event for the event, image, histogram and graph dashboards as a way to know that everything has rendered properly. The graph dashboard fires "rendered" after some custom d3 logic, while the other components fire it when attached, using async, as suggested by the migration guide: https://www.polymer-project.org/1.0/docs/migration.html#domready Change: 117741252
* Apply selective registration to op registration, to remove the OpDefBuilderGravatar A. Unique TensorFlower2016-03-21
| | | | | | | | | | calls. Move selective registration macros to their own file - this made it easier to #include <string.h> before the definition. Renamed SHOULD_REGISTER_OP to SHOULD_REGISTER_OP_KERNEL, and used SHOULD_REGISTER_OP for the new op.h filtering. Change: 117738751
* Updated the distributed runtime docs to use `tf.GrpcServer`.Gravatar Derek Murray2016-03-21
| | | | | | | | | | It is no longer necessary to build `grpc_tensorflow_server` to use the distributed runtime. All dependencies are now included when you `import tensorflow` in Python. This change also adds a convenience method for creating an in-process server that binds to any available port. Change: 117736352
* Add more FFT ops.Gravatar A. Unique TensorFlower2016-03-21
| | | | | | * Add 1D and 3D non-batched FFT ops. * Add 1, 2, and 3D batched FFT ops. Change: 117726732
* Documenting ASAN exclusion.Gravatar A. Unique TensorFlower2016-03-21
| | | | Change: 117717701
* Added -fPIC to the command line in instructions to compile user op.Gravatar Manjunath Kudlur2016-03-21
| | | | | Fixes #1569 Change: 117716771
* Fix for device_lib failures on python3Gravatar Eugene Brevdo2016-03-21
| | | | Change: 117682109
* It is now an error to use `if tensor:` where `if tensor is not None:` is meant.Gravatar Derek Murray2016-03-21
| | | | | | | | | | | | | | | | | This implements "bool strictness" for TensorFlow, which is intended to improve usability. It removes the ambiguity between testing to see if a tensor is defined (which should be done using `is None`/`is not None` tests), and whether it evaluates to `True` (which should be done using explicity logical TensorFlow operations). See Issue #1454 for more details. IF THIS BREAKS YOU ------------------ Replace all uses of `if tensor:` with `if tensor is not None:` and all uses of `if not tensor:` with `if tensor is None:`. Change: 117676227
* TensorFlow: fix python3 by using range instead of xrange (range is fineGravatar Vijay Vasudevan2016-03-21
| | | | | here since it's a test and the value is 10). Change: 117630192
* Python3 fix for benchmarksGravatar Eugene Brevdo2016-03-21
| | | | Change: 117630187
* Minor typo fix.Gravatar A. Unique TensorFlower2016-03-21
| | | | Change: 117611495
* Re-rollback of "TensorFlow: move eigen some NN code from our ↵Gravatar Vijay Vasudevan2016-03-18
| | | | | | | third_party/eigen3 copy to being part of TF, add tests." Change: 117608627
* Build and visibility changesGravatar Martin Wicke2016-03-18
| | | | Change: 117608343
* histogram_ops refactor:Gravatar A. Unique TensorFlower2016-03-18
| | | | | | Make histogram_ops visible Make histogram_ops.histogram_fixed_width return histogram derived from current inputs only, rather than accumulate Change: 117602117
* Clarification on (and minor fix) for RunOptions/RunOutputs usage.Gravatar Zongheng Yang2016-03-18
| | | | Change: 117601377
* Convert RNN benchmarks to new Benchmark test & runner.Gravatar Eugene Brevdo2016-03-18
| | | | Change: 117599224
* Change Cuda pinned memory allocation to BFC allocator.Gravatar Xiaoqiang Zheng2016-03-18
| | | | | Move the GPU-neutral code to common_runtime. Change: 117591254
* Support ScratchAllocator in BLAS Batched GEMMGravatar A. Unique TensorFlower2016-03-18
| | | | Change: 117590857
* Minor simplification in Hinge prediction.Gravatar A. Unique TensorFlower2016-03-18
| | | | Change: 117590840