-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[intel-npu] Adding NPU_TURBO option to plugin (#25603)
### Details: - Adding npu_turbo option for intel-npu plugin ### Tickets: - [*ticket-id*](https://jira.devtools.intel.com/browse/CVS-147038)
- Loading branch information
Showing
18 changed files
with
180 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
src/plugins/intel_npu/tests/functional/behavior/ov_infer_request/compile_and_infer.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Copyright (C) 2018-2024 Intel Corporation | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
|
||
#include "overload/compile_and_infer.hpp" | ||
|
||
#include <npu_private_properties.hpp> | ||
|
||
#include "common/npu_test_env_cfg.hpp" | ||
#include "common/utils.hpp" | ||
|
||
namespace { | ||
|
||
using namespace ov::test::behavior; | ||
|
||
const std::vector<ov::AnyMap> configs = {{}}; | ||
|
||
INSTANTIATE_TEST_SUITE_P(compatibility_smoke_BehaviorTests, | ||
OVCompileAndInferRequest, | ||
::testing::Combine(::testing::Values(getConstantGraph(ov::element::f32)), | ||
::testing::Values(ov::test::utils::DEVICE_NPU), | ||
::testing::ValuesIn(configs)), | ||
ov::test::utils::appendPlatformTypeTestName<OVCompileAndInferRequest>); | ||
|
||
INSTANTIATE_TEST_SUITE_P(compatibility_smoke_BehaviorTests, | ||
OVCompileAndInferRequestTurbo, | ||
::testing::Combine(::testing::Values(getConstantGraph(ov::element::f32)), | ||
::testing::Values(ov::test::utils::DEVICE_NPU), | ||
::testing::ValuesIn(std::vector<ov::AnyMap>{ | ||
{ov::intel_npu::create_executor(0)}, | ||
{ov::intel_npu::create_executor(1)}})), | ||
ov::test::utils::appendPlatformTypeTestName<OVCompileAndInferRequestTurbo>); | ||
|
||
} // namespace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 0 additions & 22 deletions
22
...u/tests/functional/shared_tests_instances/behavior/ov_infer_request/compile_and_infer.cpp
This file was deleted.
Oops, something went wrong.