The C types in lite/c/c_api_internal.h are not actually internal,
rather, they are common types used throughout the C++ and C APIs.
Rename the header accordingly.
PiperOrigin-RevId: 282494601
Change-Id: Ia784f35724d774db256ffcbbcdc5bb00e6574417
277453541 by A. Unique TensorFlower<gardener@tensorflow.org>:
Fix import path.
--
277445856 by A. Unique TensorFlower<gardener@tensorflow.org>:
Separate `update_bazel_(linux|macos)` call from `kokoro_init_(linux|macos)` function. Modify all build scripts to run `update_bazel_*` right after `kokoro_init_*` call.
--
277440435 by A. Unique TensorFlower<gardener@tensorflow.org>:
Automated rollback of changelist 277217247.
277434196 by A. Unique TensorFlower<gardener@tensorflow.org>:
TFLM: Move runtime tensor initialization upfront and allow tensor_info to be freed.
This CL will save `sizeof(TensorInfo) * tensors_size` bytes in tensor_arena.
The cascaded design of SimpleMemoryAllocator provides a save and intuitive abstraction. The Child allocator serves as a temporary allocator. Whatever allocated in the child will be freed once it goes out of scope. And it doesn't not affect allocation in the parent - parent allocator is locked down while child allocator is available.
--
277428110 by A. Unique TensorFlower<gardener@tensorflow.org>:
Automated rollback of changelist 276610559.
277426570 by A. Unique TensorFlower<gardener@tensorflow.org>:
Exit gracefully when outside compilation is invoked outside TPUReplicateContext
scope.
--
277423900 by A. Unique TensorFlower<gardener@tensorflow.org>:
Tensor tracer: adding ShapeN to list of ops that should not be traced.
--
277422316 by A. Unique TensorFlower<gardener@tensorflow.org>:
[XLA] Don't try to inline dead instructions.
Inlining previous instruction could make other call instructions
dead. Don't inline those dead instructions.
--
277414458 by A. Unique TensorFlower<gardener@tensorflow.org>:
Op documentation update.
update of g3doc/tfl_ops.md
update of g3doc/tf_ops.md
--
PiperOrigin-RevId: 277453541
This change moves //tensorflow/contrib/lite to //tensorflow/lite in preparation
for TensorFlow 2.0's deprecation of contrib/. If you refer to TF Lite build
targets or headers, you will need to update them manually. If you use TF Lite
from the TensorFlow python package, "tf.contrib.lite" now points to "tf.lite".
Please update your imports as soon as possible.
For more details, see https://groups.google.com/a/tensorflow.org/forum/#!topic/tflite/iIIXOTOFvwQ
@angersson and @aselle are conducting this migration. Please contact them if
you have any further questions.
PiperOrigin-RevId: 219536476