forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary_extension.cpp
More file actions
25 lines (19 loc) · 807 Bytes
/
library_extension.cpp
File metadata and controls
25 lines (19 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (C) 2018-2026 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#include "library_extension.hpp"
#include "tf_utils.hpp"
using namespace ov::frontend;
using namespace ov::frontend::tensorflow::tests;
using TFLibraryExtensionTest = FrontendLibraryExtensionTest;
static FrontendLibraryExtensionTestParams getTestData() {
FrontendLibraryExtensionTestParams params;
params.m_frontEndName = TF_FE;
params.m_modelsPath = std::string(TEST_TENSORFLOW_MODELS_DIRNAME);
params.m_modelName = "2in_2out/2in_2out.pb";
return params;
}
INSTANTIATE_TEST_SUITE_P(TFLibraryExtensionTest,
FrontendLibraryExtensionTest,
::testing::Values(getTestData()),
FrontendLibraryExtensionTest::getTestCaseName);