Merge pull request from kiszk:spelling_tweaks_lite_c

PiperOrigin-RevId: 299618350
Change-Id: I9eb1f3f8454147a1bfb0b6cceeeceac46ea03d34
This commit is contained in:
TensorFlower Gardener 2020-03-07 19:00:17 -08:00
commit 404ea6206c
4 changed files with 4 additions and 4 deletions
tensorflow/lite

View File

@ -109,7 +109,7 @@ typedef struct {
//
// The information can be deduced from the shape of input and the shape of
// weights. Since the TFLiteConverter toolchain doesn't support partially
// specificed shapes, relying on `depth_multiplier` stops us from supporting
// specified shapes, relying on `depth_multiplier` stops us from supporting
// graphs with dynamic shape tensors.
//
// Note: Some of the delegates (e.g. NNAPI, GPU) are still relying on this

View File

@ -181,7 +181,7 @@ TEST(CApiSimple, Delegate) {
// The delegate should have been applied.
EXPECT_TRUE(delegate_prepared);
// Subsequent exectuion should behave properly (the delegate is a no-op).
// Subsequent execution should behave properly (the delegate is a no-op).
TfLiteInterpreterOptionsDelete(options);
TfLiteModelDelete(model);
EXPECT_EQ(TfLiteInterpreterInvoke(interpreter), kTfLiteOk);

View File

@ -15,7 +15,7 @@ limitations under the License.
// This file defines common C types and APIs for implementing operations,
// delegates and other constructs in TensorFlow Lite. The actual operations and
// delegtes can be defined using C++, but the interface between the interpreter
// delegates can be defined using C++, but the interface between the interpreter
// and the operations are C.
//
// Summary of abstractions

View File

@ -15,7 +15,7 @@ limitations under the License.
// This file defines common C types and APIs for implementing operations,
// delegates and other constructs in TensorFlow Lite. The actual operations and
// delegtes can be defined using C++, but the interface between the interpreter
// delegates can be defined using C++, but the interface between the interpreter
// and the operations are C.
//
// Summary of abstractions