aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Add fused_conv2d_bias_activation operator for the forward phase.Gravatar Yangzihao Wang2017-07-20
| | | | PiperOrigin-RevId: 162624917
* Adds RELU6 to the list of cheap operations for potential recompute in ↵Gravatar A. Unique TensorFlower2017-07-20
| | | | | | memory_optimizer. PiperOrigin-RevId: 162624766
* Modify batch_shape and event_shape for transformed distributions to handle ↵Gravatar A. Unique TensorFlower2017-07-20
| | | | | | dynamic shapes. PiperOrigin-RevId: 162619535
* Generalize categorical CDF broadcasting over argument.Gravatar A. Unique TensorFlower2017-07-20
| | | | PiperOrigin-RevId: 162601793
* Use an ErrorSpec in R4ReduceWindowTest::DoIt and re-enable a disabled test.Gravatar A. Unique TensorFlower2017-07-19
| | | | PiperOrigin-RevId: 162570059
* Fix missing spaces for several errors.Gravatar A. Unique TensorFlower2017-07-19
| | | | PiperOrigin-RevId: 162567926
* Remove invalid usage of DISABLED_ON_(C|G)PU -- these don't work on ↵Gravatar A. Unique TensorFlower2017-07-19
| | | | | | reduce_window_test.cc PiperOrigin-RevId: 162566699
* Add support for display_name and summary_description to the ↵Gravatar Dandelion Man?2017-07-19
| | | | | | | | | | | tf.summary.tensor_summary op. The display_name will be used to display the series in TensorBoard, in lieu of the tag, assuming that it is specified. (When it is not specified, behavior will stay the same.) The summary_description will allow the user to write a longform readable description of the summary series for display in TensorBoard. Markdown will be supported. This will make it possible for TensorBoard-2 summary ops to give the user direct control over the display name, solving https://github.com/tensorflow/tensorboard/issues/59. PiperOrigin-RevId: 162566261
* Internal change.Gravatar Anna R2017-07-19
| | | | PiperOrigin-RevId: 162562631
* Further BUILD cleanup in tensorflow/contrib/...Gravatar A. Unique TensorFlower2017-07-19
| | | | PiperOrigin-RevId: 162561536
* Minor cleanupGravatar A. Unique TensorFlower2017-07-19
| | | | PiperOrigin-RevId: 162561496
* Disable a test temporarily while we fix it to account for fastmath-caused ↵Gravatar A. Unique TensorFlower2017-07-19
| | | | | | floating point imprecision. PiperOrigin-RevId: 162560345
* Fully qualify namespaces in XLA macros.Gravatar Justin Lebar2017-07-19
| | | | | | No functional change. PiperOrigin-RevId: 162558977
* Add multi-head attention capabilities to AttentionWrapper via the ↵Gravatar Adam Roberts2017-07-19
| | | | | | specification of multiple AttentionMechanisms. PiperOrigin-RevId: 162557562
* Allow kernel op tests to add resource inputsGravatar A. Unique TensorFlower2017-07-19
| | | | PiperOrigin-RevId: 162556398
* Fix comment: OperatorPDCholesky -> LinearOperatorTriLGravatar A. Unique TensorFlower2017-07-19
| | | | PiperOrigin-RevId: 162544918
* Split HLO profile display logic out of hlo_execution_profile.cc, movingGravatar Justin Lebar2017-07-19
| | | | | | it into execution_profile_builder.cc. PiperOrigin-RevId: 162541782
* Merge changes from github.Gravatar Jonathan Hseu2017-07-19
| | | | | | | | | | | | | | | | | END_PUBLIC --- Commit daa67ad17 authored by Jonathan Hseu<vomjom@vomjom.net> Committed by Frank Chen<frankchn@gmail.com>: Remove unittest import (#11596) --- Commit 491beb74c authored by A. Unique TensorFlower<gardener@tensorflow.org> Committed by TensorFlower Gardener<gardener@tensorflow.org>: BEGIN_PUBLIC Automated g4 rollback of changelist 162423171 PiperOrigin-RevId: 162541442
* PiperOrigin-RevId: 162539241Gravatar A. Unique TensorFlower2017-07-19
|
* Add functions for specifying a custom gradient.Gravatar Joshua V. Dillon2017-07-19
| | | | PiperOrigin-RevId: 162527721
* Automated g4 rollback of changelist 160314706Gravatar Yangzihao Wang2017-07-19
| | | | PiperOrigin-RevId: 162525519
* Disable padding by default in tf.contrib.signal.stft to match ↵Gravatar RJ Ryan2017-07-19
| | | | | | tf.contrib.signal.frame. PiperOrigin-RevId: 162523648
* Internal change.Gravatar A. Unique TensorFlower2017-07-19
| | | | PiperOrigin-RevId: 162522519
* Use math_ops.{sinh,asin,cosh} instead of trig.{sinh,arc_sinh) in Sinh bijector.Gravatar A. Unique TensorFlower2017-07-19
| | | | PiperOrigin-RevId: 162519993
* Add Short-time Fourier Transform (STFT) and inverse STFT support to ↵Gravatar RJ Ryan2017-07-19
| | | | | | | | tf.contrib.signal. These are implemented using GPU-capable ops and have gradient support. PiperOrigin-RevId: 162511440
* Remove class BoolVector. Use uint8 in its place.Gravatar A. Unique TensorFlower2017-07-19
| | | | | | | | Both preds() and uint8() use the same storage. In a subsequent CL, I will unify all the different storage types and make Literal a template class. It's now replicating storage that is never used. PiperOrigin-RevId: 162509649
* [XLA] Move the flag from stream_assignment_flags into DebugOptionsGravatar Eli Bendersky2017-07-19
| | | | PiperOrigin-RevId: 162506964
* [TF:XLA] Use a separate function library for functions generated by control ↵Gravatar Peter Hawkins2017-07-19
| | | | | | flow functionalization pass. Avoids copying the main function library for each compilation. PiperOrigin-RevId: 162506388
* Minor improvements in TensorForestEstimator: reduce default stopping loss ↵Gravatar A. Unique TensorFlower2017-07-19
| | | | | | threshold, which makes it train a little longer and results in better models. Also add average tree size to summary for handy viewing in TensorBoard. PiperOrigin-RevId: 162505559
* [TF:XLA] Relax numeric tolerances of some tests.Gravatar Peter Hawkins2017-07-19
| | | | PiperOrigin-RevId: 162505321
* Internal change.Gravatar A. Unique TensorFlower2017-07-19
| | | | PiperOrigin-RevId: 162502710
* Seals tf.contrib.factorizationGravatar A. Unique TensorFlower2017-07-19
| | | | PiperOrigin-RevId: 162494862
* Adds a warning if the evaluation steps are 0Gravatar Jianwei Xie2017-07-19
| | | | PiperOrigin-RevId: 162491844
* tfdbg: open-source C++ and Python libraries of gRPC debugger modeGravatar Shanqing Cai2017-07-19
| | | | | | | | with the exception of Windows the session_debug_grpc_test is temporarily disabled on mac pending pip install of futures and grpcio on all slaves. PiperOrigin-RevId: 162482541
* Further BUILD cleanup in tensorflow/contrib/...Gravatar A. Unique TensorFlower2017-07-19
| | | | PiperOrigin-RevId: 162466482
* Add output_partitions support in distributed runtime.Gravatar Suharsh Sivakumar2017-07-19
| | | | PiperOrigin-RevId: 162456565
* Added support for testing convolution of 3D arrays (i.e. 1d-convolution).Gravatar A. Unique TensorFlower2017-07-19
| | | | PiperOrigin-RevId: 162453537
* Fix is_floating for tf.qint*, tf.quint*.Gravatar A. Unique TensorFlower2017-07-18
| | | | | | is_floating fails for tf.qint* because issubclass is called on tf.qint*, which is not a class. Use numpy.issubdtype to perform the check instead. PiperOrigin-RevId: 162441672
* No public changeGravatar A. Unique TensorFlower2017-07-18
| | | | PiperOrigin-RevId: 162441153
* Automated g4 rollback of changelist 162423171Gravatar A. Unique TensorFlower2017-07-18
| | | | PiperOrigin-RevId: 162437318
* [XLA] Get rid of ServiceFlags by absorbing it into DebugOptions.Gravatar A. Unique TensorFlower2017-07-18
| | | | | | | After this change HloModuleConfig::hlo_profiling_enabled_ is redundant. I'll remove it in a future change. PiperOrigin-RevId: 162436163
* adds missing "pass" to empty method in tf.contrib.learn.DNNClassifier docGravatar A. Unique TensorFlower2017-07-18
| | | | PiperOrigin-RevId: 162431577
* Introduces fuzzers for some complex operations and kernels in TensorFlow in ↵Gravatar Frank Chen2017-07-18
| | | | | | preparation for eventaul fuzzing using Google OSS-Fuzz. PiperOrigin-RevId: 162425120
* Add autotuning code for matmul operator.Gravatar Yangzihao Wang2017-07-18
| | | | | | Currently it is turned off by default. PiperOrigin-RevId: 162423171
* Remove all references to OperatorPD and replace with LinearOperator.Gravatar A. Unique TensorFlower2017-07-18
| | | | | | - Only dependent is Wishart, which is updated to use LinearOperator. PiperOrigin-RevId: 162421033
* Add a utility function to build and write a SavedModel, setting reasonableGravatar A. Unique TensorFlower2017-07-18
| | | | | | defaults for the required arguments. PiperOrigin-RevId: 162420810
* fix leftnav files for programmer's guideGravatar Mark Daoust2017-07-18
| | | | PiperOrigin-RevId: 162418535
* FileBlockCache will now run a thread to prune files with expired blocks, if ↵Gravatar A. Unique TensorFlower2017-07-18
| | | | | | configured with a nonzero max staleness. PiperOrigin-RevId: 162416777
* Fix crash when OOM error occurs with verbose logging enabledGravatar A. Unique TensorFlower2017-07-18
| | | | PiperOrigin-RevId: 162414962
* Go: Update generated wrapper functions for TensorFlow ops.Gravatar A. Unique TensorFlower2017-07-18
| | | | PiperOrigin-RevId: 162413543