File tree Expand file tree Collapse file tree 8 files changed +1
-16
lines changed
src/plugins/intel_npu/src
common/include/intel_npu/common Expand file tree Collapse file tree 8 files changed +1
-16
lines changed Original file line number Diff line number Diff line change 11
11
#include " intel_npu/network_metadata.hpp"
12
12
#include " intel_npu/utils/zero/zero_utils.hpp"
13
13
#include " intel_npu/utils/zero/zero_wrappers.hpp"
14
- #include " openvino/runtime/aligned_buffer.hpp"
15
14
#include " openvino/runtime/profiling_info.hpp"
15
+ #include " openvino/runtime/shared_buffer.hpp"
16
16
17
17
namespace intel_npu {
18
18
Original file line number Diff line number Diff line change @@ -60,7 +60,6 @@ class ICompilerAdapter {
60
60
const Config& config) const = 0;
61
61
virtual std::shared_ptr<IGraph> parse (std::shared_ptr<ov::AlignedBuffer> networkSOPtr, const Config& config) const = 0;
62
62
virtual ov::SupportedOpsMap query (const std::shared_ptr<const ov::Model>& model, const Config& config) const = 0;
63
- virtual ov::intel_npu::CompilerType getCompilerType () const = 0;
64
63
65
64
virtual ~ICompilerAdapter () = default ;
66
65
Original file line number Diff line number Diff line change @@ -30,10 +30,6 @@ class DriverCompilerAdapter final : public ICompilerAdapter {
30
30
31
31
ov::SupportedOpsMap query (const std::shared_ptr<const ov::Model>& model, const Config& config) const override ;
32
32
33
- ov::intel_npu::CompilerType getCompilerType () const override {
34
- return ov::intel_npu::CompilerType::DRIVER;
35
- }
36
-
37
33
private:
38
34
/* *
39
35
* @brief Serialize input / output information to string format.
Original file line number Diff line number Diff line change 10
10
11
11
#include " intel_npu/common/igraph.hpp"
12
12
#include " intel_npu/utils/zero/zero_init.hpp"
13
- #include " openvino/runtime/shared_buffer.hpp"
14
13
#include " ze_graph_ext_wrappers.hpp"
15
14
16
15
namespace intel_npu {
Original file line number Diff line number Diff line change 10
10
#include " intel_npu/icompiler.hpp"
11
11
#include " intel_npu/utils/logger/logger.hpp"
12
12
#include " intel_npu/utils/zero/zero_init.hpp"
13
- #include " openvino/runtime/shared_buffer.hpp"
14
13
#include " openvino/runtime/so_ptr.hpp"
15
14
#include " ze_graph_ext_wrappers.hpp"
16
15
@@ -26,10 +25,6 @@ class PluginCompilerAdapter final : public ICompilerAdapter {
26
25
27
26
ov::SupportedOpsMap query (const std::shared_ptr<const ov::Model>& model, const Config& config) const override ;
28
27
29
- ov::intel_npu::CompilerType getCompilerType () const override {
30
- return ov::intel_npu::CompilerType::MLIR;
31
- }
32
-
33
28
private:
34
29
std::shared_ptr<ZeroInitStructsHolder> _zeroInitStruct;
35
30
Original file line number Diff line number Diff line change 15
15
#include " intel_npu/utils/zero/zero_init.hpp"
16
16
#include " intel_npu/utils/zero/zero_types.hpp"
17
17
18
- #include " openvino/runtime/aligned_buffer.hpp"
19
-
20
18
namespace intel_npu {
21
19
22
20
using SerializedIR = std::pair<size_t , std::shared_ptr<uint8_t >>;
Original file line number Diff line number Diff line change 7
7
#include " intel_npu/config/common.hpp"
8
8
#include " intel_npu/config/runtime.hpp"
9
9
#include " intel_npu/utils/zero/zero_api.hpp"
10
- #include " openvino/runtime/shared_buffer.hpp"
11
10
12
11
namespace intel_npu {
13
12
Original file line number Diff line number Diff line change 21
21
#include " openvino/op/parameter.hpp"
22
22
#include " openvino/runtime/intel_npu/properties.hpp"
23
23
#include " openvino/runtime/properties.hpp"
24
- #include " openvino/runtime/shared_buffer.hpp"
25
24
#include " plugin_compiler_adapter.hpp"
26
25
#include " remote_context.hpp"
27
26
#include " zero_backend.hpp"
You can’t perform that action at this time.
0 commit comments