Fix the compilation issue on macOS for model_xnnpack_test.

PiperOrigin-RevId: 315232566
Change-Id: Id531f93890da147f2fb7378c7226cbf52a4fdc87
This commit is contained in:
Chao Mei 2020-06-08 01:50:33 -07:00 committed by TensorFlower Gardener
parent 56ef8c1ac2
commit 2650619387
2 changed files with 3 additions and 12 deletions

View File

@ -508,8 +508,7 @@ cc_test(
":util", ":util",
"//tensorflow/lite/c:common", "//tensorflow/lite/c:common",
"//tensorflow/lite/kernels:builtin_ops", "//tensorflow/lite/kernels:builtin_ops",
"//tensorflow/lite/testing:util", "@com_google_googletest//:gtest_main",
"@com_google_googletest//:gtest",
], ],
) )

View File

@ -1,4 +1,4 @@
/* Copyright 2018 The TensorFlow Authors. All Rights Reserved. /* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
@ -12,14 +12,12 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
==============================================================================*/ ==============================================================================*/
#include "tensorflow/lite/model.h"
#include <string> #include <string>
#include <gtest/gtest.h> #include <gtest/gtest.h>
#include "tensorflow/lite/core/macros.h" #include "tensorflow/lite/core/macros.h"
#include "tensorflow/lite/kernels/register.h" #include "tensorflow/lite/kernels/register.h"
#include "tensorflow/lite/testing/util.h" #include "tensorflow/lite/model.h"
#include "tensorflow/lite/util.h" #include "tensorflow/lite/util.h"
namespace tflite { namespace tflite {
@ -51,9 +49,3 @@ TEST(FloatModel, WithXnnpackDelegate) {
} }
} // namespace tflite } // namespace tflite
int main(int argc, char** argv) {
::tflite::LogToStderr();
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}