Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openvinotoolkit/openvino
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1f163fad267f6ffb5f5f2cdc263d90a23a592e78
Choose a base ref
..
head repository: openvinotoolkit/openvino
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5a29e3c5cfafc810ae4adc90e84c1e4f4bcec785
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 src/plugins/intel_npu/src/plugin/src/plugin.cpp
4 changes: 2 additions & 2 deletions src/plugins/intel_npu/src/plugin/src/plugin.cpp
Original file line number Diff line number Diff line change
@@ -794,9 +794,9 @@ std::shared_ptr<ov::ICompiledModel> Plugin::import_model(std::istream& stream, c
}
_logger.debug("Successfully read %zu bytes into blob.", graphSize);

blobPtr = std::move(std::make_unique<BlobContainerVector>(std::move(blob)));
blobPtr = std::make_unique<BlobContainerVector>(std::move(blob));
} else {
blobPtr = std::move(std::make_unique<BlobContainerAlignedBuffer>(modelBuffer, stream.tellg()));
blobPtr = std::make_unique<BlobContainerAlignedBuffer>(modelBuffer, stream.tellg());
}

auto graph = compiler->parse(std::move(blobPtr), localConfig);