aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/toco/import_tensorflow_test.cc
Commit message (Collapse)AuthorAge
* 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
* 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
* 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
* [TF] Variant improvements.Gravatar Eugene Brevdo2018-09-11
| | | | | | | | | | | | | | | | | | 1. Change Variant Decode to accept VariantTensorData (non-ref). This should allow some optimization in the future. In the meantime it means removing the variant.h include from tensor.h, since variant_encode_decode.h now relies on tensor.h and variant.h now relies on that. It also means we found a bunch of places where tensor.proto.h, variant.h, and mutex.h were being imported through tensor.h (along with a bunch of other crap); so now we directly import them in order to compile. 2. Move Variant registry to use TypeIndex instead of a TypeName string; this should speed up registry lookups. PiperOrigin-RevId: 212478896
* 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
* Improve import error messages.Gravatar A. Unique TensorFlower2018-05-18
| | | | PiperOrigin-RevId: 197217638
* Check for overflow in shape calculation.Gravatar A. Unique TensorFlower2018-05-01
PiperOrigin-RevId: 195017114