Skip to content

Commit

Permalink
Fix offsets mismatch for HETERO plugin blob headers
Browse files Browse the repository at this point in the history
  • Loading branch information
MirceaDan99 committed Jan 15, 2025
1 parent 2d290ef commit fcd4a45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/intel_npu/src/plugin/src/plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ std::shared_ptr<ov::ICompiledModel> Plugin::import_model(std::istream& stream, c
npu_plugin_properties.erase(ov::internal::cached_model_buffer.name());
}

const std::map<std::string, std::string> propertiesMap = any_copy(npu_plugin_properties);
const auto propertiesMap = any_copy(npu_plugin_properties);

auto localConfig = merge_configs(_globalConfig, propertiesMap, OptionMode::RunTime);
_logger.setLevel(localConfig.get<LOG_LEVEL>());
Expand Down

0 comments on commit fcd4a45

Please sign in to comment.