minor spelling tweaks

This commit is contained in:
Kazuaki Ishizaki 2020-03-06 20:39:20 +09:00
parent efff893c70
commit e1cfaf9517
3 changed files with 3 additions and 3 deletions

View File

@ -109,7 +109,7 @@ typedef struct {
// //
// The information can be deduced from the shape of input and the shape of // The information can be deduced from the shape of input and the shape of
// weights. Since the TFLiteConverter toolchain doesn't support partially // 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. // graphs with dynamic shape tensors.
// //
// Note: Some of the delegates (e.g. NNAPI, GPU) are still relying on this // 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. // The delegate should have been applied.
EXPECT_TRUE(delegate_prepared); 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); TfLiteInterpreterOptionsDelete(options);
TfLiteModelDelete(model); TfLiteModelDelete(model);
EXPECT_EQ(TfLiteInterpreterInvoke(interpreter), kTfLiteOk); 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, // This file defines common C types and APIs for implementing operations,
// delegates and other constructs in TensorFlow Lite. The actual operations and // 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. // and the operations are C.
// //
// Summary of abstractions // Summary of abstractions