aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/kernels/unidirectional_sequence_rnn.cc
Commit message (Collapse)AuthorAge
* Modularize TF Lite interface definitions and reorganize file structureGravatar Pete Warden2018-09-07
| | | | PiperOrigin-RevId: 212064501
* Update unidirectional sequential RNN to support state API.Gravatar A. Unique TensorFlower2018-08-29
| | | | PiperOrigin-RevId: 210746360
* Remove unnecessary <unistd.h> includesGravatar Jared Duke2018-07-23
| | | | PiperOrigin-RevId: 205744600
* Internal change.Gravatar A. Unique TensorFlower2018-05-31
| | | | PiperOrigin-RevId: 198787391
* Enhance error reporting.Gravatar A. Unique TensorFlower2018-05-21
| | | | PiperOrigin-RevId: 197390052
* Internal change.Gravatar A. Unique TensorFlower2018-05-14
| | | | PiperOrigin-RevId: 196570742
* Making GetInput from kernel_util.h return a pointer to const data.Gravatar A. Unique TensorFlower2018-05-11
| | | | PiperOrigin-RevId: 196340200
* Implementation of the unidirectional_sequence_rnn TFLite Op using the ↵Gravatar A. Unique TensorFlower2018-05-10
| | | | | | symmetric quantization. PiperOrigin-RevId: 196152754
* A more efficient implementation of the Op using batch operations.Gravatar A. Unique TensorFlower2018-02-02
| | | | PiperOrigin-RevId: 184367562
* Cleanup: Ran clang-format on all *.{cc,h} files in ↵Gravatar A. Unique TensorFlower2018-01-30
| | | | | | tensorflow/contrib/.../*.{hh,c}. PiperOrigin-RevId: 183855242
* Add support for time_major shape format to the sequential RNN Op in TF Lite.Gravatar A. Unique TensorFlower2018-01-19
| | | | | | | | This option, if set, changes the shape format of the inputs and outputs to [max_time, batch_size, depth]. If false, it uses [batch_size, max_time, depth]. By default, it is set to false. PiperOrigin-RevId: 182569507
* Add unidirectional sequence RNN to TFLite Ops.Gravatar A. Unique TensorFlower2017-12-14
PiperOrigin-RevId: 179086788