Skip to content

Commit

Permalink
Remove unit tests due to the need of extending IGraph api with
Browse files Browse the repository at this point in the history
`get_blob_container` method
  • Loading branch information
MirceaDan99 committed Jan 22, 2025
1 parent 1801088 commit 02683cf
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 224 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ class IGraph : public std::enable_shared_from_this<IGraph> {
virtual ~IGraph() = default;

const NetworkMetadata& get_metadata() const;
const BlobContainer& get_blob_container() const;
ze_graph_handle_t get_handle() const;

void update_network_name(std::string_view name);
Expand Down
4 changes: 0 additions & 4 deletions src/plugins/intel_npu/src/common/src/igraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ const NetworkMetadata& IGraph::get_metadata() const {
return _metadata;
}

const BlobContainer& IGraph::get_blob_container() const {
return *_blobPtr;
}

ze_graph_handle_t IGraph::get_handle() const {
return _handle;
}
Expand Down
2 changes: 0 additions & 2 deletions src/plugins/intel_npu/tests/unit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ set(MANDATORY_UNIT_TESTS_LIBS
"openvino::gtest"
"openvino::gtest_main"
"openvino::runtime"
"openvino_runtime_s"
"openvino::npu_common"
"openvino::npu_al"
"openvino::npu_logger_utils"
Expand All @@ -30,7 +29,6 @@ ov_add_test_target(
${OpenVINO_SOURCE_DIR}/src/plugins/intel_npu/src/utils/include
${OpenVINO_SOURCE_DIR}/src/plugins/intel_npu/src/plugin/include
${OpenVINO_SOURCE_DIR}/src/plugins/intel_npu/src/al/include
$<TARGET_PROPERTY:openvino_runtime,INTERFACE_INCLUDE_DIRECTORIES>
OBJECT_FILES
${OpenVINO_SOURCE_DIR}/src/plugins/intel_npu/src/plugin/src/metadata.cpp
LINK_LIBRARIES
Expand Down
217 changes: 0 additions & 217 deletions src/plugins/intel_npu/tests/unit/npu/blob_container.cpp

This file was deleted.

0 comments on commit 02683cf

Please sign in to comment.