aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/pooling_ops_3d.cc
Commit message (Collapse)AuthorAge
* Use tensorflow::se instead of perftools::gputools for StreamExecutor.Gravatar Justin Lebar2018-04-23
| | | | PiperOrigin-RevId: 194010749
* Cleanup: Ran clang-format on all *.{cc,h} files in tensorflow/core/kernels.Gravatar A. Unique TensorFlower2018-01-26
| | | | PiperOrigin-RevId: 183423961
* Merge changes from github.Gravatar Benoit Steiner2017-08-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | END_PUBLIC --- Commit cf375f067 authored by A. Unique TensorFlower<gardener@tensorflow.org> Committed by Benoit Steiner<benoitsteiner@users.noreply.github.com>: Adds cudnn_rnn_ops_op_lib and cudnn_rnn_kernels to contrib_ops_op_lib and contrib_kernels respectively. PiperOrigin-RevId: 164170971 --- Commit 95ec58e27 authored by Asim Shankar<ashankar@google.com> Committed by Benoit Steiner<benoitsteiner@users.noreply.github.com>: C API: Make TF_TensorFromTensor return an error instead of just logging it. PiperOrigin-RevId: 164167582 --- Commit 15175c870 authored by Jonathan Hseu<jhseu@google.com> Committed by Benoit Steiner<benoitsteiner@users.noreply.github.com>: Build fixes. - Allow var_list as a positional argument in CrossShardOptimizer. - Set the number of shards to 1 when not running on TPU, to allow evaluate() and predict() on CPU/GPU to work. PiperOrigin-RevId: 164161640 --- Commit bd3e894f7 authored by Yao Zhang<yaozhang@google.com> Committed by Benoit Steiner<benoitsteiner@users.noreply.github.com>: Support freeze mode for fused batch norm. PiperOrigin-RevId: 164149032 --- Commit e6b6b84c0 authored by Asim Shankar<ashankar@google.com> Committed by Benoit Steiner<benoitsteiner@users.noreply.github.com>: C API: TF_Tensors will always be in host memory. This change undoes some experimentation in commit 22651083406ca01ac9d481e3367a3510d25f88cd and restores TF_Tensor behavior to what is was prior to that change. PiperOrigin-RevId: 164146670 --- Commit 8bf3f88f7 authored by Peter Hawkins<phawkins@google.com> Committed by Benoit Steiner<benoitsteiner@users.noreply.github.com>: [TF:XLA] Add _XLASend and _XLARecv TF ops that wrap the XLA Send/Recv HLO ops. PiperOrigin-RevId: 164124764 --- Commit 626d3200f authored by Peter Hawkins<phawkins@google.com> Committed by Benoit Steiner<benoitsteiner@users.noreply.github.com>: [XLA] Add test blacklist mechanism for XLA C++ unit tests. PiperOrigin-RevId: 164124423 --- Commit 359cc5f5e authored by A. Unique TensorFlower<gardener@tensorflow.org> Committed by Benoit Steiner<benoitsteiner@users.noreply.github.com>: Document dict ordering in nest and make it consistent with sonnet. PiperOrigin-RevId: 164114335 --- Commit 05813b531 authored by A. Unique TensorFlower<gardener@tensorflow.org> Committed by Benoit Steiner<benoitsteiner@users.noreply.github.com>: Go: Update generated wrapper functions for TensorFlow ops. PiperOrigin-RevId: 164089206 --- Commit c451f465d authored by Anna R<annarev@google.com> Committed by Benoit Steiner<benoitsteiner@users.noreply.github.com>: BEGIN_PUBLIC Automated g4 rollback of changelist 164078808 PiperOrigin-RevId: 164318935
* Merge changes from github.Gravatar A. Unique TensorFlower2017-04-04
| | | | Change: 152200430
* Add support for the NCHW data_format for 3d operations (convolution, pooling).Gravatar A. Unique TensorFlower2017-03-21
| | | | | This brings NCHW support for 3d in sync with the corresponding 2d ops. Change: 150811076
* Fix Conv3d with unequal strides on CPU (order of dimensions got mixed upGravatar A. Unique TensorFlower2016-11-07
| | | | | between TF and Eigen). Add tests covering the unequal stride case. Change: 138421428
* Portability fixes for various kernels.Gravatar Derek Murray2016-09-21
| | | | | | | | | | | | | | | | | | | Includes the following changes: * Moving references to GPUDevice under `#if GOOGLE_CUDA`. * Moving references to C99 special math functions under `#if EIGEN_HAS_C99_MATH`. * Moving `class Rectangle` into the `tensorflow` namespace to avoid a name clash. * Adding `#include <numeric>` to cover uses of `std::iota()`. * Add explicit static casts in summary_op.cc. * Consistent array initialization in pooling_ops_3d.cc. Change: 133827052
* Update copyright for 3p/tf/core.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123900938
* Fix dimension order when using 3d CUDNN pooling.Gravatar A. Unique TensorFlower2016-05-13
| | | | Change: 122287466
* Add support for 3d convolutions and pooling. CPU kernels use Eigen, GPU ↵Gravatar A. Unique TensorFlower2016-05-04
kernels use CuDNN. Change: 121484787