Switch `tf.parse_single_example()` to use the fused implementation in most cases.
authorDerek Murray <mrry@google.com>
Fri, 12 Jan 2018 00:11:19 +0000 (16:11 -0800)
committerTensorFlower Gardener <gardener@tensorflow.org>
Fri, 12 Jan 2018 00:16:47 +0000 (16:16 -0800)
commit9f14bc8f56526759381bdea69c226a7b7d21b5ba
treef43fccdcbdc6dd6a3dc4e43460a5dd4c6625baef
parentfebdd26ae594133d24f82544706b1e012a5cf1ea
Switch `tf.parse_single_example()` to use the fused implementation in most cases.

Remove the unused `tf.contrib.data.parse_single_example()` function, which was
a temporary bridge to the fused implementation.

Note that the fused implementation is only used if the (seldom used) `example_names` argument is None. Otherwise, it falls back to the existing unfused implementation.

PiperOrigin-RevId: 181676746
tensorflow/contrib/data/__init__.py
tensorflow/python/kernel_tests/parse_single_example_op_test.py
tensorflow/python/ops/parsing_ops.py