diff --git a/src/inference/src/dev/core_impl.cpp b/src/inference/src/dev/core_impl.cpp index 17d31f19167..bcfec41f2e8 100644 --- a/src/inference/src/dev/core_impl.cpp +++ b/src/inference/src/dev/core_impl.cpp @@ -686,7 +686,7 @@ ov::SoPtr ov::CoreImpl::import_model(std::istream& modelStre const ov::AnyMap& config) const { OV_ITT_SCOPED_TASK(ov::itt::domains::IE, "Core::import_model"); auto parsed = parseDeviceNameIntoConfig(context.get_device_name(), config); - auto compiled_model = get_plugin(parsed._deviceName).import_model(modelStream, parsed._config); + auto compiled_model = get_plugin(parsed._deviceName).import_model(modelStream, context, parsed._config); if (auto wrapper = std::dynamic_pointer_cast(compiled_model._ptr)) { wrapper->get_executable_network()->loadedFromCache(); }