aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/kernels/batch_to_space_nd.cc
Commit message (Collapse)AuthorAge
* Modularize TF Lite interface definitions and reorganize file structureGravatar Pete Warden2018-09-07
| | | | PiperOrigin-RevId: 212064501
* Consolidate refactoring of runtime shapes.Gravatar A. Unique TensorFlower2018-08-30
| | | | PiperOrigin-RevId: 210945714
* Enhance error reporting.Gravatar A. Unique TensorFlower2018-05-21
| | | | PiperOrigin-RevId: 197390052
* Making GetInput from kernel_util.h return a pointer to const data.Gravatar A. Unique TensorFlower2018-05-11
| | | | PiperOrigin-RevId: 196340200
* Enable support for crops in BatchToSpaceNdGravatar A. Unique TensorFlower2018-05-10
| | | | PiperOrigin-RevId: 196186750
* Adding support for batch_to_space_nd op with crops.Gravatar A. Unique TensorFlower2018-04-11
| | | | PiperOrigin-RevId: 192511036
* Remove redundant calls to realloc dynamic tensors.Gravatar A. Unique TensorFlower2018-02-06
| | | | PiperOrigin-RevId: 184682942
* Internal change.Gravatar Nupur Garg2018-01-30
| | | | PiperOrigin-RevId: 183900332
* Make TFLite BatchToSpaceND op have parity with TF BatchToSpaceND op.Gravatar Nupur Garg2018-01-29
| | | | PiperOrigin-RevId: 183687487
* Support BatchToSpaceND in TFLiteGravatar Yu-Cheng Ling2017-12-14
The internal implementation only support 4D tensors for now. The dimension has to be 1 batch + 2 spatial + 1 other. The most common format within this restriction is NHWC. Cropping is not supported by the internal implementation. PiperOrigin-RevId: 179143332