24 lines
782 B
C++
24 lines
782 B
C++
// Copyright (C) 2018-2023 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include "convert_model.hpp"
|
|
|
|
#include "tf_utils.hpp"
|
|
|
|
using namespace ngraph;
|
|
using namespace ov::frontend;
|
|
|
|
using TFLiteConvertModelTest = FrontEndConvertModelTest;
|
|
|
|
static const std::vector<std::string> models{
|
|
std::string("2in_2out/2in_2out.tflite"),
|
|
};
|
|
|
|
INSTANTIATE_TEST_SUITE_P(TFLiteConvertModelTest,
|
|
FrontEndConvertModelTest,
|
|
::testing::Combine(::testing::Values(TF_LITE_FE),
|
|
::testing::Values(std::string(TEST_TENSORFLOW_LITE_MODELS_DIRNAME)),
|
|
::testing::ValuesIn(models)),
|
|
FrontEndConvertModelTest::getTestCaseName);
|