Skip to content

Commit 9708ada

Browse files
committed
Fix style
Signed-off-by: Xin Wang <[email protected]>
1 parent 1e32f68 commit 9708ada

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/plugins/intel_npu/src/compiler_adapter/src/plugin_compiler_adapter.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
#include "openvino/util/shared_object.hpp"
2323
#include "weightless_graph.hpp"
2424

25-
2625
namespace {
2726
#ifndef VCL_FOR_COMPILER
2827
std::shared_ptr<void> load_library(const std::string& libpath) {
@@ -63,7 +62,6 @@ ov::Tensor make_tensor_from_vector(std::vector<uint8_t>& vector) {
6362

6463
} // namespace
6564

66-
6765
namespace intel_npu {
6866

6967
PluginCompilerAdapter::PluginCompilerAdapter(const std::shared_ptr<ZeroInitStructsHolder>& zeroInitStruct)
@@ -283,7 +281,8 @@ std::shared_ptr<IGraph> PluginCompilerAdapter::parse(
283281
_logger.debug("parse metadata from driver for vcl compiler");
284282
if (_zeGraphExt) {
285283
_logger.debug("parse start for vcl compiler");
286-
graphHandle = _zeGraphExt->getGraphHandle(*reinterpret_cast<const uint8_t*>(mainBlob.data()), mainBlob.get_byte_size());
284+
graphHandle =
285+
_zeGraphExt->getGraphHandle(*reinterpret_cast<const uint8_t*>(mainBlob.data()), mainBlob.get_byte_size());
287286
networkMeta = _zeGraphExt->getNetworkMeta(graphHandle);
288287
}
289288
_logger.debug("parse end for vcl compiler");

0 commit comments

Comments
 (0)