Skip to content

Commit

Permalink
Delete hetero and multi configs (openvinotoolkit#22416)
Browse files Browse the repository at this point in the history
  • Loading branch information
vurusovs authored Feb 1, 2024
1 parent fa58184 commit 6d6d332
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 119 deletions.
17 changes: 0 additions & 17 deletions src/inference/include/ie/details/ie_exception.hpp

This file was deleted.

48 changes: 0 additions & 48 deletions src/inference/include/ie/hetero/hetero_plugin_config.hpp

This file was deleted.

3 changes: 0 additions & 3 deletions src/inference/include/ie/ie_plugin_config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,3 @@ DECLARE_CONFIG_KEY(FORCE_TBB_TERMINATE);

IE_SUPPRESS_DEPRECATED_END
} // namespace InferenceEngine

#include "hetero/hetero_plugin_config.hpp"
#include "multi-device/multi_device_config.hpp"
48 changes: 0 additions & 48 deletions src/inference/include/ie/multi-device/multi_device_config.hpp

This file was deleted.

1 change: 0 additions & 1 deletion src/inference/src/compilation_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
#endif

#include "cpp/ie_cnn_network.h"
#include "details/ie_exception.hpp"
#include "itt.hpp"
#include "openvino/pass/manager.hpp"
#include "openvino/util/file_util.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/auto/tests/unit/ctput_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ TEST_P(LoadNetworkWithCTPUTMockTest, CTPUTSingleDevLogicTest) {

if (targetDevices.size() == 1) {
std::string targetDevice = targetDevices[0];
config.insert({ov::device::priorities.name(), targetDevices[0]});
config.insert(ov::device::priorities(targetDevice));
// Call single device logic and performance hint is THROUGHPUT
EXPECT_CALL(*core,
compile_model(::testing::Matcher<const std::shared_ptr<const ov::Model>&>(_),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ std::vector<memoryStateParams> memoryStateTestCases = {
memoryStateParams(OVInferRequestVariableStateTest::get_network(),
{"c_1-3", "r_1-3"},
ov::test::utils::DEVICE_HETERO,
{{MULTI_CONFIG_KEY(DEVICE_PRIORITIES), ov::test::utils::DEVICE_CPU}})};
{ov::device::priorities(ov::test::utils::DEVICE_CPU)})};

INSTANTIATE_TEST_SUITE_P(smoke_VariableState,
OVInferRequestVariableStateTest,
Expand Down

0 comments on commit 6d6d332

Please sign in to comment.