aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/toco/import_tensorflow.cc
Commit message (Collapse)AuthorAge
* remove debug statementsGravatar A. Unique TensorFlower2018-10-10
| | | | PiperOrigin-RevId: 216536298
* Fix number of outputs when importing tensorflow GraphDef.Gravatar A. Unique TensorFlower2018-10-10
| | | | | | Sometimes the actual number of outputs is dictated by one of the attributes of the NodeDef. PiperOrigin-RevId: 216530696
* Use Ophints to support TfLite UnidirectionaSequenceLstm and add an e2e test.Gravatar A. Unique TensorFlower2018-10-09
| | | | | | Support peephole and num_proj as well. PiperOrigin-RevId: 216467578
* Fix issue with type inference for ops with fixed output typesGravatar Jared Duke2018-10-08
| | | | | | | Use the ArgDef::type field when available for propagating the output types from a given unsupported operator. PiperOrigin-RevId: 216257741
* Handle Range & BatchMatMul in partial Flex modeGravatar Yu-Cheng Ling2018-10-05
| | | | PiperOrigin-RevId: 215957535
* Rename TFLite Eager delegate -> Flex delegateGravatar Yu-Cheng Ling2018-09-27
| | | | PiperOrigin-RevId: 214835588
* Automated rollback of commit 82af048bc8c3c044c98a27b1c4c27bb62d4e4a14Gravatar Nupur Garg2018-09-26
| | | | PiperOrigin-RevId: 214705311
* Rename TFLite Eager delegate -> Flex delegateGravatar Yu-Cheng Ling2018-09-26
| | | | PiperOrigin-RevId: 214674717
* TOCO transformations updated to support dilated depthwise convolution.Gravatar Suharsh Sivakumar2018-09-19
| | | | PiperOrigin-RevId: 213729750
* Implement ZerosLikeGravatar A. Unique TensorFlower2018-09-17
| | | | PiperOrigin-RevId: 213227615
* Improve output parsing for unsupported opsGravatar Jared Duke2018-09-14
| | | | PiperOrigin-RevId: 213017532
* Reland "Add basic type propagation for unsupported ops in TFLite conversion"Gravatar Jared Duke2018-09-13
| | | | | | | The original CL was rolled back due to op registration conflicts in the pip. Resolve the issue by only including core:ops in the toco binary itself, not in intermediate libraries. PiperOrigin-RevId: 212902838
* Automated rollback of commit 6b507a6de855a6f988100904229b7f46a5652b88Gravatar Suharsh Sivakumar2018-09-13
| | | | PiperOrigin-RevId: 212890622
* Add basic type propagation for unsupported ops in TFLite conversionGravatar Jared Duke2018-09-12
| | | | PiperOrigin-RevId: 212651704
* Minimum change for generating Eager ops with Toco.Gravatar Yu-Cheng Ling2018-09-05
| | | | PiperOrigin-RevId: 211621189
* Implementation of reduce_any.Gravatar A. Unique TensorFlower2018-08-28
| | | | PiperOrigin-RevId: 210507220
* Implementation of unpack op.Gravatar A. Unique TensorFlower2018-08-23
| | | | PiperOrigin-RevId: 210051131
* Fix toco compilation on WindowsGravatar Jared Duke2018-08-07
| | | | | | | | The toco utility should now build successfully on Windows. However, there are a few lingering issues with execution that need to be resolved before the utility is fully functional. PiperOrigin-RevId: 207770586
* Add support for float output arrays in Quantized custom operators (custom ↵Gravatar A. Unique TensorFlower2018-08-03
| | | | | | ops only). PiperOrigin-RevId: 207306198
* Implementation of ctc beam search decoder op in custom op fashion.Gravatar A. Unique TensorFlower2018-08-02
| | | | PiperOrigin-RevId: 207210333
* Implementation of logical_or.Gravatar A. Unique TensorFlower2018-07-30
| | | | PiperOrigin-RevId: 206549781
* Increase the input dimension size from 4 to 6 to address the RetinaNet modelGravatar A. Unique TensorFlower2018-07-26
| | | | PiperOrigin-RevId: 206235660
* Add one_hot op support to TFLiteGravatar Jared Duke2018-07-26
| | | | PiperOrigin-RevId: 206185190
* Support for shape attributes in custom ops for TocoGravatar A. Unique TensorFlower2018-07-25
| | | | PiperOrigin-RevId: 206012140
* Implementation of stack.Gravatar A. Unique TensorFlower2018-07-23
| | | | PiperOrigin-RevId: 205763219
* Import/export support for Any, LogicalAnd, and LogicalNot ops.Gravatar A. Unique TensorFlower2018-07-18
| | | | PiperOrigin-RevId: 205134621
* Fixing gather to support round-tripping non-zero axis.Gravatar A. Unique TensorFlower2018-07-18
| | | | PiperOrigin-RevId: 205122011
* Remove duplicated Log converterGravatar A. Unique TensorFlower2018-07-18
| | | | PiperOrigin-RevId: 205096505
* toco thinks Stack is the same as Pack.Gravatar A. Unique TensorFlower2018-07-17
| | | | | | | | | | | | | | Stack is not Pack. tf.stack() yields Pack ops. Pack ops stack tensors. Stack ops manipulate the TF runtime stack. This cl unaliases "Stack" and "Pack" ops in toco, and renames most things that refer to "Stack" ops to "Pack" to be consistent across the codebase. In summary: Stack is whack. 'Stack' should be 'Pack'. Hack 'Stack's into 'Pack's like a maniac. This keeps 'Stack's from wracking runtime graphs. (We apologize for the fault in the change description. Those responsible have been...er...sacked). PiperOrigin-RevId: 204951155
* Support reduce_max and reduce_prodGravatar A. Unique TensorFlower2018-07-16
| | | | PiperOrigin-RevId: 204846139
* Support narrow_range attr on FakeQuant nodesGravatar A. Unique TensorFlower2018-07-12
| | | | PiperOrigin-RevId: 204339562
* Implementation of arg_min.Gravatar A. Unique TensorFlower2018-07-10
| | | | PiperOrigin-RevId: 203908601
* Allow transposition of the weights in fully connected ops.Gravatar A. Unique TensorFlower2018-06-29
| | | | PiperOrigin-RevId: 202693036
* Implementation of pow.Gravatar A. Unique TensorFlower2018-06-27
| | | | PiperOrigin-RevId: 202262513
* Quick fix for import bool array.Gravatar A. Unique TensorFlower2018-06-25
| | | | PiperOrigin-RevId: 202077590
* Fix import int32/uint8/int64/bool array for toco.Gravatar A. Unique TensorFlower2018-06-21
| | | | PiperOrigin-RevId: 201627909
* Implement TFLite Shape operatorGravatar Jared Duke2018-06-20
| | | | PiperOrigin-RevId: 201389618
* Merge changes from github.Gravatar Akshay Modi2018-06-18
| | | | PiperOrigin-RevId: 201110240
* Convert CheckInputsSize to return a Status instead of CHECK-failing, and ↵Gravatar A. Unique TensorFlower2018-06-18
| | | | | | | | convert existing callsites to TF_QCHECK_OK the call. This moves us towards the goal of returning Statuses instead of check-failing in ImportTensorFlowNode(). PiperOrigin-RevId: 201056489
* Automated g4 rollback of changelist 201011811Gravatar Akshay Modi2018-06-18
| | | | PiperOrigin-RevId: 201033171
* Merge changes from github.Gravatar Akshay Modi2018-06-18
| | | | PiperOrigin-RevId: 201011811
* Convert ImportTensorFlow method from switch to table based.Gravatar A. Unique TensorFlower2018-06-17
| | | | PiperOrigin-RevId: 200892708
* Leverage the standard error space by using tensorflow::StatusGravatar A. Unique TensorFlower2018-06-12
| | | | PiperOrigin-RevId: 200322035
* Optimizing transpose_conv.Gravatar A. Unique TensorFlower2018-06-08
| | | | PiperOrigin-RevId: 199839745
* Implement Log operator.Gravatar A. Unique TensorFlower2018-06-07
| | | | PiperOrigin-RevId: 199735191
* TOCO: return Status instead of crashing while converting "Conv".Gravatar A. Unique TensorFlower2018-06-07
| | | | PiperOrigin-RevId: 199714511
* Implementation of TensorFlowEqual and TensorFlowNotEqual.Gravatar A. Unique TensorFlower2018-06-07
| | | | PiperOrigin-RevId: 199602232
* Support uint8, int32 and int64 for SpaceToDepth in TOCO.Gravatar Saurabh Saxena2018-06-05
| | | | PiperOrigin-RevId: 199376731
* Replace boilerplate code with function template.Gravatar A. Unique TensorFlower2018-06-01
| | | | PiperOrigin-RevId: 198963930
* implementation of sparse_to_denseGravatar A. Unique TensorFlower2018-05-31
| | | | PiperOrigin-RevId: 198710452