forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore_impl.cpp
1742 lines (1560 loc) · 81.3 KB
/
core_impl.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (C) 2018-2025 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#include "core_impl.hpp"
#include <memory>
#include "check_network_batchable.hpp"
#include "itt.hpp"
#include "model_reader.hpp"
#include "openvino/core/any.hpp"
#include "openvino/core/except.hpp"
#include "openvino/core/op_extension.hpp"
#include "openvino/core/preprocess/pre_post_process.hpp"
#include "openvino/core/so_extension.hpp"
#include "openvino/core/version.hpp"
#include "openvino/opsets/opset.hpp"
#include "openvino/pass/manager.hpp"
#include "openvino/runtime/compilation_context.hpp"
#include "openvino/runtime/device_id_parser.hpp"
#include "openvino/runtime/icompiled_model.hpp"
#include "openvino/runtime/internal_properties.hpp"
#include "openvino/runtime/itensor.hpp"
#include "openvino/runtime/make_tensor.hpp"
#include "openvino/runtime/remote_context.hpp"
#include "openvino/runtime/shared_buffer.hpp"
#include "openvino/runtime/threading/executor_manager.hpp"
#include "openvino/util/common_util.hpp"
#include "openvino/util/file_util.hpp"
#include "openvino/util/shared_object.hpp"
#include "openvino/util/xml_parse_utils.hpp"
#include "ov_plugins.hpp"
#ifdef PROXY_PLUGIN_ENABLED
# include "openvino/proxy/plugin.hpp"
# include "openvino/proxy/properties.hpp"
#endif
ov::ICore::~ICore() = default;
namespace {
#ifdef PROXY_PLUGIN_ENABLED
std::string get_internal_plugin_name(const std::string& device_name, const ov::AnyMap& properties) {
static constexpr const char* internal_plugin_suffix = "_ov_internal";
auto it = properties.find(ov::proxy::configuration::internal_name.name());
if (it != properties.end())
return it->second.as<std::string>();
return device_name + internal_plugin_suffix;
}
#endif
template <typename F>
void allowNotImplemented(F&& f) {
try {
f();
} catch (const ov::NotImplemented&) {
}
}
void stripDeviceName(std::string& device, const std::string& substr) {
auto pos = device.find(substr);
if (pos == 0) {
device.erase(pos, substr.length());
}
}
/**
* @brief Converts / flattens ov::device::properties from
* @code
* core.compile_model(model, "GPU", ov::device::properties("GPU", ov::cache_dir("/tmp")));
* // or
* core.compile_model(model, "GPU", ov::device::properties({
* { "GPU", ov::cache_dir("/tmp") },
* { "CPU", ov::cache_dir("") }
* }));
* @endcode
* To the form:
* @code
* core.compile_model(model, "GPU", ov::cache_dir("/tmp"));
* @endcode
*
* @param user_device_name A device name for which properties flattening is performed
* @param user_properties Original set of properties
* @return ov::AnyMap Flattened ov::AnyMap with properties
*/
ov::AnyMap flatten_sub_properties(const std::string& user_device_name, const ov::AnyMap& user_properties) {
ov::AnyMap result_properties = user_properties;
// puts sub-property to result_properties if it's not there yet
auto update_result_properties = [&result_properties](const ov::AnyMap& sub_properties) -> void {
for (auto&& sub_property : sub_properties)
result_properties[sub_property.first] = sub_property.second;
};
// First search for ov::device::properties(DEVICE, ...), which has higher
for (auto secondary_property = result_properties.begin(); secondary_property != result_properties.end();) {
auto subprop_device_name_pos = secondary_property->first.find(ov::device::properties.name() + std::string("_"));
if (subprop_device_name_pos == std::string::npos) {
// 1. Skip non-matching properties
secondary_property++;
continue;
}
// 2. device properties DEVICE_PROPERTIES_<device_name_with_id> are found
auto subprop_device_name =
secondary_property->first.substr(subprop_device_name_pos + std::strlen(ov::device::properties.name()) + 1);
// flattening is performed only when config is applicable (see docs for ov::is_config_applicable)
if (ov::is_config_applicable(user_device_name, subprop_device_name) ||
ov::is_virtual_device(user_device_name)) {
// 2.1. keep the secondary property for the other virtual devices, but repack them
auto device_properties = result_properties.find(ov::device::properties.name());
if (device_properties == result_properties.end()) {
result_properties[ov::device::properties.name()] = ov::AnyMap{};
}
auto& secondary_properties = result_properties[ov::device::properties.name()].as<ov::AnyMap>();
auto secondary_properties_it = secondary_properties.find(subprop_device_name);
if (secondary_properties_it == secondary_properties.end()) {
// 2.1.1. No device name in map yet, insert all config as is
secondary_properties[subprop_device_name] = secondary_property->second;
} else {
// 2.1.2. Device name is present in config file, merge properties according to:
// ov::device::properties(<device_name>) overrides ov::device::properties(ov::AnyMap{})
auto& secondary_device_properties = secondary_properties_it->second.as<ov::AnyMap>();
for (auto& item : secondary_property->second.as<ov::AnyMap>()) {
secondary_device_properties[item.first] = item.second;
}
}
}
// 3. since the sub-property is flattened, we need to drop it
secondary_property = result_properties.erase(secondary_property);
}
// Second search for ov::device::properties(ov::AnyMap{...})
for (auto property = result_properties.begin(); property != result_properties.end();) {
if (property->first != ov::device::properties.name()) {
// 1. Skip non-matching properties
property++;
continue;
}
// 2. device properties DEVICE_PROPERTIES are found
auto& secondary_properties = property->second.as<ov::AnyMap>();
for (auto secondary_property = secondary_properties.begin();
secondary_property != secondary_properties.end();) {
// flattening is performed only when config is applicable (see docs for ov::is_config_applicable)
if (ov::is_config_applicable(user_device_name, secondary_property->first)) {
// 2.1. flatten the secondary property for target device
// example: core.compile_model("GPU", ov::device::properties("GPU", ov::prop1));
// example: core.compile_model("GPU.1", ov::device::properties("GPU", ov::prop1));
update_result_properties(secondary_property->second.as<ov::AnyMap>());
secondary_property = secondary_properties.erase(secondary_property);
} else if (ov::is_virtual_device(user_device_name)) {
// 2.2. keep the secondary property for the other virtual devices
secondary_property++;
continue;
} else {
// 2.3. remove the secondary property setting for other hardware device
// example: core.compile_model("GPU", ov::device::properties("CPU", ov::prop1));
secondary_property = secondary_properties.erase(secondary_property);
}
}
// 3. go to the next property
if (secondary_properties.empty()) {
// 3.1. since the sub-property is flattened, we need to drop it
property = result_properties.erase(property);
} else {
// 3.2. some properties are still in ov::device::properties(ov::AnyMap{}), abort loop
break;
}
}
return result_properties;
}
enum class MatchType { EXACT = 0, SUBSTR };
struct DevicePriority {
std::string prop_name;
MatchType match_type;
};
DevicePriority get_device_priority_property(const std::string& device_name) {
return ov::is_virtual_device(device_name)
? DevicePriority{ov::device::priorities.name(), MatchType::EXACT}
:
// ov::device::properties(GPU.0) can be applied for GPU tile identified by GPU.0.0
DevicePriority{ov::device::id.name(), MatchType::SUBSTR};
}
void clean_batch_properties(const std::string& deviceName, ov::AnyMap& config, const ov::PropertyName& property_name) {
// auto-batching is not applicable, if there is auto_batch_timeout, delete it
if (deviceName.find("BATCH") == std::string::npos) {
const auto& batch_timeout_mode = config.find(property_name);
if (batch_timeout_mode != config.end()) {
if (!ov::is_virtual_device(deviceName))
config.erase(batch_timeout_mode);
}
}
}
static const auto core_properties_names =
ov::util::make_array(ov::cache_dir.name(), ov::enable_mmap.name(), ov::force_tbb_terminate.name());
static const auto auto_batch_properties_names =
ov::util::make_array(ov::auto_batch_timeout.name(), ov::hint::allow_auto_batching.name());
} // namespace
bool ov::is_config_applicable(const std::string& user_device_name, const std::string& subprop_device_name) {
// full match
if (user_device_name == subprop_device_name)
return true;
auto parsed_user_device_name = ov::parseDeviceNameIntoConfig(user_device_name);
auto parsed_subprop_device_name = ov::parseDeviceNameIntoConfig(subprop_device_name);
// if device name is matched, check additional condition
auto is_matched = [&](const std::string& key, MatchType match_type) -> bool {
const auto& user_value =
parsed_user_device_name._config.count(key) ? parsed_user_device_name._config.at(key).as<std::string>() : "";
const auto& subprop_value = parsed_subprop_device_name._config.count(key)
? parsed_subprop_device_name._config.at(key).as<std::string>()
: "";
if (!user_value.empty() && subprop_value.empty()) {
// property without additional limitation can be applied
return true;
}
return match_type == MatchType::EXACT ? (user_value == subprop_value) : (user_value.find(subprop_value) == 0);
return false;
};
if (parsed_user_device_name._deviceName == parsed_subprop_device_name._deviceName) {
auto device_priority = get_device_priority_property(parsed_user_device_name._deviceName);
return is_matched(device_priority.prop_name, device_priority.match_type);
}
return false;
}
bool ov::is_virtual_device(const std::string& device_name) {
return (device_name.find("AUTO") == 0 || device_name.find("MULTI") == 0 || device_name.find("HETERO") == 0 ||
device_name.find("BATCH") == 0);
};
namespace {
ov::Parsed parse_device_config(const std::string& device_name,
const ov::CoreConfig& core_config,
const ov::AnyMap& properties,
const bool keep_auto_batch_property) {
// check to the validity of device name
auto bracket_pos = device_name.find(")");
while (bracket_pos != std::string::npos) {
if (bracket_pos < device_name.length() - 1 &&
(device_name[bracket_pos + 1] != ',' || bracket_pos + 1 == device_name.length() - 1)) {
OPENVINO_THROW("Device with \"", device_name, "\" name is illegal in the OpenVINO Runtime");
}
bracket_pos = device_name.find(")", bracket_pos + 1);
}
/** Note: auto-batching is already applied by this time, so the call:
* core.compile_model("GPU", ov::device::properties("BATCH", ov::auto_batch_timeout(400)));
* is transformed and we have here:
* ov::parseDeviceNameIntoConfig("BATCH", ov::device::priorities("GPU"),
* ov::device::properties("BATCH",
* ov::auto_batch_timeout(400)));
* so, after 'flatten_sub_properties' we will have:
* core.compile_model("BATCH", ov::auto_batch_timeout(400),
* ov::device::priorities("GPU"));
*
* So, if one day, we want to add more options in form of ov::allow_<hetero, etc>, we need to apply it before
* 'flatten_sub_properties' call to have proper behavior
*/
ov::Parsed parsed{device_name, flatten_sub_properties(device_name, properties), core_config};
auto& updated_device_name = parsed._deviceName;
auto& updated_config = parsed._config;
std::string parsed_device_priority;
// try to find ':' to extract name of virtual device
auto pos = device_name.find_first_of(':');
if (pos != std::string::npos) {
updated_device_name = device_name.substr(0, pos);
parsed_device_priority = device_name.substr(pos + 1);
} else {
ov::DeviceIDParser parser(device_name);
updated_device_name = parser.get_device_name();
parsed_device_priority = parser.get_device_id();
}
// checks and updates device priority
if (!parsed_device_priority.empty()) {
const auto priority_prop_name = get_device_priority_property(updated_device_name).prop_name;
const auto it = updated_config.find(priority_prop_name);
if (it == updated_config.end())
updated_config[priority_prop_name] = parsed_device_priority;
else if (it->second == parsed_device_priority) {
// do nothing
} else {
OPENVINO_THROW("Device priority / ID mismatch: ",
parsed_device_priority,
" (from ",
device_name,
") vs ",
it->second.as<std::string>(),
" (from config)");
}
};
parsed._core_config.set(updated_config);
// keep batch property only when called from query_supported_property
if (!keep_auto_batch_property) {
for (const auto& name : auto_batch_properties_names) {
clean_batch_properties(updated_device_name, updated_config, name);
}
}
return parsed;
}
} // namespace
ov::Parsed ov::parseDeviceNameIntoConfig(const std::string& deviceName,
const AnyMap& config,
const bool keep_auto_batch_property) {
return parseDeviceNameIntoConfig(deviceName, CoreConfig{}, config, keep_auto_batch_property);
}
ov::Parsed ov::parseDeviceNameIntoConfig(const std::string& deviceName,
const CoreConfig& coreConfig,
const AnyMap& config,
const bool keep_auto_batch_property) {
auto parsed = parse_device_config(deviceName, coreConfig, config, keep_auto_batch_property);
// remove core properties for HW devices
if (!ov::is_virtual_device(parsed._deviceName)) {
// note: ov::cache_dir kept as plugin may require it
CoreConfig::remove_core_skip_cache_dir(parsed._config);
}
return parsed;
}
ov::CoreImpl::CoreImpl() {
add_mutex(""); // Register global mutex
m_executor_manager = ov::threading::executor_manager();
for (const auto& it : ov::get_available_opsets()) {
opsetNames.insert(it.first);
}
}
bool ov::CoreImpl::is_proxy_device(const ov::Plugin& plugin) const {
return is_proxy_device(plugin.get_name());
}
bool ov::CoreImpl::is_proxy_device(const std::string& dev_name) const {
#ifdef PROXY_PLUGIN_ENABLED
std::string real_name = ov::parseDeviceNameIntoConfig(dev_name)._deviceName;
return pluginRegistry.find(real_name) != pluginRegistry.end() &&
pluginRegistry.at(real_name).pluginCreateFunc == ov::proxy::create_plugin;
#else
return false;
#endif
}
void ov::CoreImpl::register_plugin_in_registry_unsafe(const std::string& device_name, PluginDescriptor& desc) {
#ifdef PROXY_PLUGIN_ENABLED
// Update proxy plugin config
const auto& fill_config = [](ov::AnyMap& defaultConfig, const ov::AnyMap& config, const std::string& dev_name) {
// Configure aliases for proxy plugin
auto it = config.find(ov::proxy::configuration::alias.name());
std::string alias;
if (it != config.end()) {
alias = it->second.as<std::string>();
if (defaultConfig.find(ov::proxy::alias_for.name()) == defaultConfig.end()) {
defaultConfig[ov::proxy::alias_for.name()] = std::vector<std::string>();
}
defaultConfig[ov::proxy::alias_for.name()].as<std::vector<std::string>>().emplace_back(dev_name);
}
// Configure device order for proxy_plugin
it = config.find(ov::proxy::configuration::priority.name());
if (it != config.end()) {
if (defaultConfig.find(ov::proxy::device_priorities.name()) == defaultConfig.end()) {
defaultConfig[ov::proxy::device_priorities.name()] = std::vector<std::string>();
}
defaultConfig[ov::proxy::device_priorities.name()].as<std::vector<std::string>>().emplace_back(
dev_name + ":" + it->second.as<std::string>());
}
// Configure devices fallback order for proxy_plugin
// Can use substring to configure the order
// CUDA iGPU : CUDA iGPU // just create a new elememnt
// CPU iGPU : CUDA CPU iGPU // use substring to find the right place
it = config.find(ov::proxy::configuration::fallback.name());
if (it != config.end()) {
auto fallback = it->second.as<std::string>();
// Change fallback name if fallback is configured to the HW plugin under the proxy with the same name
if (defaultConfig.find(ov::device::priorities.name()) == defaultConfig.end()) {
defaultConfig[ov::device::priorities.name()] = std::vector<std::string>{dev_name, std::move(fallback)};
} else {
auto dev_order = defaultConfig[ov::device::priorities.name()].as<std::vector<std::string>>();
auto begin_it = std::find(dev_order.begin(), dev_order.end(), dev_name);
auto end_it = std::find(dev_order.begin(), dev_order.end(), fallback);
OPENVINO_ASSERT(begin_it == dev_order.end() && end_it == dev_order.end(),
"Cannot restore the fallback order for proxy plugin.");
if (begin_it != dev_order.end() && end_it != dev_order.end()) {
// Nothing to do. Just check that devices have the right order
OPENVINO_ASSERT(std::distance(begin_it, end_it) > 0,
"Incorrect order of proxy plugin fallback priority.");
} else if (begin_it != dev_order.end()) {
// Insert fallback device after the primary device
dev_order.insert(begin_it + 1, fallback);
} else if (end_it != dev_order.end()) {
// Insert primary device before the fallback device
dev_order.insert(end_it, dev_name);
}
defaultConfig[ov::device::priorities.name()] = dev_order;
}
}
};
#endif
std::string dev_name = device_name;
#ifdef PROXY_PLUGIN_ENABLED
auto&& config = desc.defaultConfig;
// Register proxy plugin
if (config.find(ov::proxy::configuration::alias.name()) != config.end()) {
// Create proxy plugin for alias
const auto& alias = config.at(ov::proxy::configuration::alias.name()).as<std::string>();
if (alias == device_name)
dev_name = get_internal_plugin_name(dev_name, config);
// Alias can be registered by several plugins
if (pluginRegistry.find(alias) == pluginRegistry.end()) {
// Register new plugin
PluginDescriptor desc = PluginDescriptor(ov::proxy::create_plugin);
// Add internal name for proxy in order to modify fallback order before the initialization
if (alias == device_name)
desc.defaultConfig[ov::proxy::configuration::internal_name.name()] = dev_name;
fill_config(desc.defaultConfig, config, dev_name);
pluginRegistry[alias] = std::move(desc);
add_mutex(alias);
} else {
// Update registered plugin
auto& plugin = pluginRegistry.at(alias);
// Error if we have an alias for HW plugin
OPENVINO_ASSERT(plugin.pluginCreateFunc == ov::proxy::create_plugin,
"Cannot register plugin for ",
dev_name,
" plugin with the same name already registered!");
// Add internal name for proxy in order to modify fallback order before the initialization
if (alias == device_name)
plugin.defaultConfig[ov::proxy::configuration::internal_name.name()] = dev_name;
fill_config(plugin.defaultConfig, config, dev_name);
}
} else if (config.find(ov::proxy::configuration::fallback.name()) != config.end()) {
// Fallback without alias means that we need to replace original plugin to proxy
dev_name = get_internal_plugin_name(dev_name, config);
PluginDescriptor desc = PluginDescriptor(ov::proxy::create_plugin);
desc.defaultConfig[ov::proxy::configuration::internal_name.name()] = dev_name;
fill_config(desc.defaultConfig, config, dev_name);
pluginRegistry[device_name] = std::move(desc);
add_mutex(device_name);
}
const static std::vector<ov::PropertyName> proxy_conf_properties = {ov::proxy::configuration::alias,
ov::proxy::configuration::fallback,
ov::proxy::configuration::internal_name,
ov::proxy::configuration::priority};
// Register real plugin
for (const auto& proxy_prop : proxy_conf_properties) {
auto it = desc.defaultConfig.find(proxy_prop);
if (it != desc.defaultConfig.end()) {
desc.defaultConfig.erase(it);
}
}
#endif
pluginRegistry[dev_name] = desc;
add_mutex(dev_name);
}
void ov::CoreImpl::register_compile_time_plugins() {
std::lock_guard<std::mutex> lock(get_mutex());
auto any_copy = [](const std::map<std::string, std::string>& params) -> ov::AnyMap {
ov::AnyMap result;
for (auto&& value : params) {
result.emplace(value.first, value.second);
}
return result;
};
const decltype(::get_compiled_plugins_registry())& plugins = get_compiled_plugins_registry();
for (const auto& plugin : plugins) {
const auto& deviceName = plugin.first;
if (deviceName.find('.') != std::string::npos) {
OPENVINO_THROW("Device name must not contain dot '.' symbol");
}
#ifdef OPENVINO_STATIC_LIBRARY
if (pluginRegistry.find(deviceName) == pluginRegistry.end()) {
const auto& value = plugin.second;
ov::AnyMap config = any_copy(value.m_default_config);
PluginDescriptor desc{value.m_create_plugin_func, config, value.m_create_extensions_func};
register_plugin_in_registry_unsafe(deviceName, desc);
}
#else
const auto& pluginPath = ov::util::get_compiled_plugin_path(plugin.second.m_plugin_path);
if (pluginRegistry.find(deviceName) == pluginRegistry.end() && ov::util::file_exists(pluginPath)) {
ov::AnyMap config = any_copy(plugin.second.m_default_config);
PluginDescriptor desc{pluginPath, config};
register_plugin_in_registry_unsafe(deviceName, desc);
}
#endif
}
}
void ov::CoreImpl::register_plugins_in_registry(const std::string& xml_config_file, const bool& by_abs_path) {
std::lock_guard<std::mutex> lock(get_mutex());
using namespace ov::util;
auto parse_result = pugixml::parse_xml(xml_config_file.c_str());
if (!parse_result.error_msg.empty()) {
OPENVINO_THROW(parse_result.error_msg);
}
pugi::xml_document& xmlDoc = *parse_result.xml;
pugi::xml_node ieNode = xmlDoc.document_element();
pugi::xml_node devicesNode = ieNode.child("plugins");
FOREACH_CHILD (pluginNode, devicesNode, "plugin") {
std::string deviceName = pugixml::get_str_attr(pluginNode, "name");
if (pluginRegistry.find(deviceName) != pluginRegistry.end()) {
OPENVINO_THROW("Device with \"", deviceName, "\" is already registered in the OpenVINO Runtime");
}
if (deviceName.find('.') != std::string::npos) {
OPENVINO_THROW("Device name must not contain dot '.' symbol");
}
ov::util::FilePath pluginPath =
ov::util::get_plugin_path(pugixml::get_str_attr(pluginNode, "location"), xml_config_file, by_abs_path);
// check properties
auto propertiesNode = pluginNode.child("properties");
ov::AnyMap config;
if (propertiesNode) {
FOREACH_CHILD (propertyNode, propertiesNode, "property") {
std::string key = pugixml::get_str_attr(propertyNode, "key");
std::string value = pugixml::get_str_attr(propertyNode, "value");
config[key] = value;
}
}
// check extensions
auto extensionsNode = pluginNode.child("extensions");
std::vector<ov::util::FilePath> listOfExtentions;
if (extensionsNode) {
FOREACH_CHILD (extensionNode, extensionsNode, "extension") {
ov::util::FilePath extensionLocation =
ov::util::to_file_path(pugixml::get_str_attr(extensionNode, "location").c_str());
listOfExtentions.push_back(extensionLocation);
}
}
// fill value in plugin registry for later lazy initialization
{
PluginDescriptor desc{pluginPath, config, listOfExtentions};
register_plugin_in_registry_unsafe(deviceName, desc);
}
}
}
ov::Plugin ov::CoreImpl::get_plugin(const std::string& pluginName) const {
OV_ITT_SCOPE(FIRST_INFERENCE, ov::itt::domains::LoadTime, "CoreImpl::get_plugin");
auto deviceName = pluginName;
if (deviceName == ov::DEFAULT_DEVICE_NAME)
deviceName = "AUTO";
if (deviceName == "(CPU)")
deviceName = "CPU";
stripDeviceName(deviceName, "-");
std::map<std::string, PluginDescriptor>::const_iterator it;
{
// Global lock to find plugin.
// Always use global mutex if iterate over plugins or pluginRegistry
std::lock_guard<std::mutex> g_lock(get_mutex());
// Plugin is not created, check that plugin is registered
it = pluginRegistry.find(deviceName);
if (it == pluginRegistry.end()) {
if (pluginName == ov::DEFAULT_DEVICE_NAME)
OPENVINO_THROW("No device is provided, so AUTO device is used by default, which is not registered in "
"the OpenVINO Runtime.");
else
OPENVINO_THROW("Device with \"", deviceName, "\" name is not registered in the OpenVINO Runtime");
}
}
std::lock_guard<std::mutex> lock(get_mutex(deviceName));
PluginDescriptor desc;
{
// Global lock to find plugin.
// Always use global mutex if iterate over plugins or pluginRegistry
std::lock_guard<std::mutex> g_lock(get_mutex());
auto it_plugin = plugins.find(deviceName);
if (it_plugin != plugins.end())
return it_plugin->second;
desc = it->second;
}
// Plugin is in registry, but not created, let's create
std::shared_ptr<void> so;
try {
ov::Plugin plugin;
if (desc.pluginCreateFunc) { // static OpenVINO case or proxy plugin
std::shared_ptr<ov::IPlugin> plugin_impl;
desc.pluginCreateFunc(plugin_impl);
plugin = Plugin{plugin_impl, {}};
} else {
so = ov::util::load_shared_object(desc.libraryLocation.c_str());
std::shared_ptr<ov::IPlugin> plugin_impl;
reinterpret_cast<ov::CreatePluginFunc*>(ov::util::get_symbol(so, ov::create_plugin_function))(plugin_impl);
const auto& plugin_name = plugin_impl->get_device_name();
// Check that device plugin name is the same as requested for HW plugins
if (!plugin_name.empty() && !ov::is_virtual_device(plugin_name)) {
OPENVINO_ASSERT(deviceName.find(plugin_name) != std::string::npos,
desc.libraryLocation,
" is used for ",
deviceName,
" , while it contains implementation for ",
plugin_name);
}
plugin = Plugin{plugin_impl, so};
}
{
plugin.set_name(deviceName);
// Set Core class reference to plugins
std::weak_ptr<ov::ICore> mutableCore =
std::const_pointer_cast<ov::ICore>(std::dynamic_pointer_cast<const ov::ICore>(shared_from_this()));
plugin.set_core(std::move(mutableCore));
}
// configuring
{
#ifdef PROXY_PLUGIN_ENABLED
// Initial setup for proxy plugin.
// It is needed for future initialization to initialize low level plugin
if (desc.pluginCreateFunc == ov::proxy::create_plugin) {
ov::AnyMap initial_config;
auto it = desc.defaultConfig.find(ov::proxy::alias_for.name());
if (it != desc.defaultConfig.end()) {
initial_config[it->first] = it->second;
}
it = desc.defaultConfig.find(ov::proxy::device_priorities.name());
if (it != desc.defaultConfig.end()) {
initial_config[it->first] = it->second;
}
it = desc.defaultConfig.find(ov::device::priorities.name());
if (it != desc.defaultConfig.end()) {
// Fix fallback names in case if proxy plugin got a conflict in the process of plugins registration
auto priorities = it->second.as<std::vector<std::string>>();
auto internal_name = desc.defaultConfig.find(ov::proxy::configuration::internal_name.name());
for (auto&& priority : priorities) {
if (priority == deviceName) {
OPENVINO_ASSERT(internal_name != desc.defaultConfig.end(),
"Cannot create proxy device ",
deviceName,
". Device has incorrect configuration.");
priority = internal_name->second.as<std::string>();
}
}
initial_config[ov::device::priorities.name()] = priorities;
}
plugin.set_property(initial_config);
try {
plugin.get_property(ov::available_devices);
} catch (const ov::Exception& ex) {
OPENVINO_THROW("Failed to create plugin for device ",
deviceName,
"\nPlease, check your environment\n",
ex.what());
}
}
#endif
// TODO: remove this block of code once GPU removes support of ov::cache_dir
// also, remove device_supports_cache_dir at all
{
OPENVINO_SUPPRESS_DEPRECATED_START
if (device_supports_cache_dir(plugin)) {
auto cacheConfig = coreConfig.get_cache_config_for_device(plugin);
if (cacheConfig._cacheManager) {
desc.defaultConfig[ov::cache_dir.name()] = cacheConfig._cacheDir;
}
} else if (desc.defaultConfig.count(ov::cache_dir.name()) > 0) {
// Remove "CACHE_DIR" from config if it is not supported by plugin
desc.defaultConfig.erase(ov::cache_dir.name());
}
OPENVINO_SUPPRESS_DEPRECATED_END
}
allowNotImplemented([&]() {
// Add device specific value to support device_name.device_id cases
{
const std::string deviceKey =
device_supports_internal_property(plugin, ov::internal::config_device_id.name())
? ov::internal::config_device_id.name()
: ov::device::id.name();
// here we can store values like GPU.0, GPU.1 and we need to set properties to plugin
// for each such .0, .1, .# device to make sure plugin can handle different settings for different
// device IDs
for (auto pluginDesc : pluginRegistry) {
ov::DeviceIDParser parser(pluginDesc.first);
if (pluginDesc.first.find(deviceName) != std::string::npos && !parser.get_device_id().empty()) {
pluginDesc.second.defaultConfig[deviceKey] = parser.get_device_id();
plugin.set_property(pluginDesc.second.defaultConfig);
}
}
}
// set global device-id independent settings to plugin
plugin.set_property(desc.defaultConfig);
});
}
// add plugin as extension itself
std::lock_guard<std::mutex> g_lock(get_mutex());
if (desc.extensionCreateFunc) { // static OpenVINO case
try {
std::vector<ov::Extension::Ptr> ext;
desc.extensionCreateFunc(ext);
add_extensions_unsafe(ext);
} catch (const ov::Exception&) {
// the same extension can be registered multiple times - ignore it!
}
} else {
try_to_register_plugin_extensions(desc.libraryLocation);
}
return plugins.emplace(deviceName, plugin).first->second;
} catch (const ov::Exception& ex) {
OPENVINO_THROW("Failed to create plugin ",
desc.libraryLocation,
" for device ",
deviceName,
"\n",
"Please, check your environment\n",
ex.what(),
"\n");
}
}
ov::SoPtr<ov::ICompiledModel> ov::CoreImpl::compile_model(const std::shared_ptr<const ov::Model>& model_,
const std::string& device_name,
const ov::AnyMap& config) const {
OV_ITT_SCOPE(FIRST_INFERENCE, ov::itt::domains::LoadTime, "Core::compile_model::model");
std::string deviceName = device_name;
ov::AnyMap config_with_batch = config;
// if auto-batching is applicable, the below function will patch the device name and config accordingly:
auto model = apply_auto_batching(model_, deviceName, config_with_batch);
auto parsed = parseDeviceNameIntoConfig(deviceName, coreConfig, config_with_batch, is_proxy_device(deviceName));
auto plugin = get_plugin(parsed._deviceName);
ov::SoPtr<ov::ICompiledModel> res;
// will consume ov::cache_dir if plugin not support it
auto cacheManager = parsed._core_config.get_cache_config_for_device(plugin, parsed._config)._cacheManager;
// Skip caching for proxy plugin. HW plugin will load network from the cache
if (cacheManager && device_supports_model_caching(plugin, parsed._config) && !is_proxy_device(plugin)) {
CacheContent cacheContent{cacheManager, parsed._core_config.get_enable_mmap()};
cacheContent.blobId = ov::ModelCache::compute_hash(model, create_compile_config(plugin, parsed._config));
cacheContent.model = std::const_pointer_cast<ov::Model>(model);
std::unique_ptr<CacheGuardEntry> lock = cacheGuard.get_hash_lock(cacheContent.blobId);
res = load_model_from_cache(cacheContent, plugin, parsed._config, ov::SoPtr<ov::IRemoteContext>{}, [&]() {
return compile_model_and_cache(plugin,
model,
parsed._config,
ov::SoPtr<ov::IRemoteContext>{},
cacheContent);
});
} else {
res = plugin.compile_model(model, parsed._config);
}
return res;
}
ov::SoPtr<ov::ICompiledModel> ov::CoreImpl::compile_model(const std::shared_ptr<const ov::Model>& model_,
const ov::SoPtr<ov::IRemoteContext>& context,
const ov::AnyMap& config) const {
OV_ITT_SCOPE(FIRST_INFERENCE, ov::itt::domains::LoadTime, "Core::compile_model::RemoteContext");
if (!context)
OPENVINO_THROW("Remote context is null");
std::string deviceName = context->get_device_name();
ov::AnyMap config_with_batch = config;
// if auto-batching is applicable, the below function will patch the device name and config accordingly:
auto model = apply_auto_batching(model_, deviceName, config_with_batch);
auto parsed = parseDeviceNameIntoConfig(deviceName, coreConfig, config_with_batch, is_proxy_device(deviceName));
auto plugin = get_plugin(parsed._deviceName);
ov::SoPtr<ov::ICompiledModel> res;
// will consume ov::cache_dir if plugin not support it
auto cacheManager = parsed._core_config.get_cache_config_for_device(plugin, parsed._config)._cacheManager;
// Skip caching for proxy plugin. HW plugin will load network from the cache
if (cacheManager && device_supports_model_caching(plugin, parsed._config) && !is_proxy_device(plugin)) {
CacheContent cacheContent{cacheManager, parsed._core_config.get_enable_mmap()};
cacheContent.blobId = ov::ModelCache::compute_hash(model, create_compile_config(plugin, parsed._config));
std::unique_ptr<CacheGuardEntry> lock = cacheGuard.get_hash_lock(cacheContent.blobId);
cacheContent.model = std::const_pointer_cast<ov::Model>(model);
res = load_model_from_cache(cacheContent, plugin, parsed._config, context, [&]() {
return compile_model_and_cache(plugin, model, parsed._config, context, cacheContent);
});
} else {
res = plugin.compile_model(model, context, parsed._config);
}
return res;
}
ov::SoPtr<ov::ICompiledModel> ov::CoreImpl::compile_model(const std::string& model_path,
const std::string& device_name,
const ov::AnyMap& config) const {
OV_ITT_SCOPE(FIRST_INFERENCE, ov::itt::domains::LoadTime, "Core::compile_model::Path");
auto parsed = parse_device_config(device_name, coreConfig, config, false);
// in case of compile_model(file_name), we need to clear-up core-level properties
auto plugin = get_plugin(parsed._deviceName);
ov::SoPtr<ov::ICompiledModel> compiled_model;
// will consume ov::cache_dir if plugin not support it
auto cacheManager = parsed._core_config.get_cache_config_for_device(plugin, parsed._config)._cacheManager;
if (cacheManager && device_supports_model_caching(plugin, parsed._config) && !is_proxy_device(plugin)) {
// Skip caching for proxy plugin. HW plugin will load network from the cache
CoreConfig::remove_core_skip_cache_dir(parsed._config);
CacheContent cacheContent{cacheManager, parsed._core_config.get_enable_mmap(), model_path};
cacheContent.blobId = ov::ModelCache::compute_hash(model_path, create_compile_config(plugin, parsed._config));
std::unique_ptr<CacheGuardEntry> lock = cacheGuard.get_hash_lock(cacheContent.blobId);
compiled_model =
load_model_from_cache(cacheContent, plugin, parsed._config, ov::SoPtr<ov::IRemoteContext>{}, [&]() {
const auto model = util::read_model(model_path, "", extensions, parsed._core_config.get_enable_mmap());
return compile_model_and_cache(plugin, model, parsed._config, {}, cacheContent);
});
} else {
compiled_model = plugin.compile_model(model_path, parsed._config);
}
return compiled_model;
}
ov::SoPtr<ov::ICompiledModel> ov::CoreImpl::compile_model(const std::string& model_str,
const ov::Tensor& weights,
const std::string& device_name,
const ov::AnyMap& config) const {
OV_ITT_SCOPED_TASK(ov::itt::domains::OV, "Core::compile_model::from_memory");
auto parsed = parseDeviceNameIntoConfig(device_name, coreConfig, config);
auto plugin = get_plugin(parsed._deviceName);
ov::SoPtr<ov::ICompiledModel> compiled_model;
// will consume ov::cache_dir if plugin not support it
auto cacheManager = parsed._core_config.get_cache_config_for_device(plugin, parsed._config)._cacheManager;
// Skip caching for proxy plugin. HW plugin will load network from the cache
if (cacheManager && device_supports_model_caching(plugin, parsed._config) && !is_proxy_device(plugin)) {
CacheContent cacheContent{cacheManager, parsed._core_config.get_enable_mmap()};
cacheContent.blobId =
ov::ModelCache::compute_hash(model_str, weights, create_compile_config(plugin, parsed._config));
std::unique_ptr<CacheGuardEntry> lock = cacheGuard.get_hash_lock(cacheContent.blobId);
compiled_model =
load_model_from_cache(cacheContent, plugin, parsed._config, ov::SoPtr<ov::IRemoteContext>{}, [&]() {
auto model = read_model(model_str, weights);
return compile_model_and_cache(plugin,
model,
parsed._config,
ov::SoPtr<ov::IRemoteContext>{},
cacheContent);
});
} else {
auto model = read_model(model_str, weights);
compiled_model = plugin.compile_model(model, parsed._config);
}
return compiled_model;
}
ov::SoPtr<ov::ICompiledModel> ov::CoreImpl::import_model(std::istream& model,
const std::string& device_name,
const ov::AnyMap& config) const {
OV_ITT_SCOPED_TASK(ov::itt::domains::OV, "Core::import_model");
auto parsed = parseDeviceNameIntoConfig(device_name, config);
return get_plugin(parsed._deviceName).import_model(model, parsed._config);
}
ov::SoPtr<ov::ICompiledModel> ov::CoreImpl::import_model(std::istream& modelStream,
const ov::SoPtr<ov::IRemoteContext>& context,
const ov::AnyMap& config) const {
OV_ITT_SCOPED_TASK(ov::itt::domains::OV, "Core::import_model");
OPENVINO_ASSERT(context, "Remote context must not be empty.");
auto parsed = parseDeviceNameIntoConfig(context->get_device_name(), config);
return get_plugin(parsed._deviceName).import_model(modelStream, context, parsed._config);
}
ov::SupportedOpsMap ov::CoreImpl::query_model(const std::shared_ptr<const ov::Model>& model,
const std::string& device_name,
const ov::AnyMap& config) const {
OV_ITT_SCOPED_TASK(ov::itt::domains::OV, "Core::query_model");
auto parsed = parseDeviceNameIntoConfig(device_name, config);
return get_plugin(parsed._deviceName).query_model(model, parsed._config);
}
bool ov::CoreImpl::is_hidden_device(const std::string& device_name) const {
#ifdef PROXY_PLUGIN_ENABLED
std::lock_guard<std::mutex> lock(get_mutex());
// Alias hides the device
for (auto&& it : pluginRegistry) {
auto it_priority = it.second.defaultConfig.find(ov::proxy::alias_for.name());
if (it.first == device_name || it_priority == it.second.defaultConfig.end())
continue;
auto devices = it_priority->second.as<std::vector<std::string>>();
for (const auto& dev : devices) {
if (dev == device_name)
return true;
}
}
#endif
return false;
}
std::vector<std::string> ov::CoreImpl::get_available_devices() const {
std::vector<std::string> devices;
const std::string propertyName = ov::available_devices.name();
for (auto&& deviceName : get_registered_devices()) {
std::vector<std::string> devicesIDs;
// Skip hidden devices
if (is_hidden_device(deviceName))
continue;
try {
devicesIDs = get_property(deviceName, ov::available_devices.name(), {}).as<std::vector<std::string>>();
} catch (const ov::Exception&) {
// plugin is not created by e.g. invalid env
} catch (const std::runtime_error&) {
// plugin is not created by e.g. invalid env
} catch (const std::exception& ex) {
OPENVINO_THROW("An exception is thrown while trying to create the ",
deviceName,
" device and call GetMetric: ",
ex.what());
} catch (...) {
OPENVINO_THROW("Unknown exception is thrown while trying to create the ",
deviceName,
" device and call GetMetric");
}
if (devicesIDs.size() > 1) {
for (auto&& deviceID : devicesIDs) {
devices.push_back(deviceName + '.' + deviceID);
}
} else if (!devicesIDs.empty()) {
devices.push_back(deviceName);
}
}
return devices;
}
ov::SoPtr<ov::IRemoteContext> ov::CoreImpl::create_context(const std::string& device_name, const AnyMap& params) const {
auto parsed = ov::parseDeviceNameIntoConfig(device_name, params);
return get_plugin(parsed._deviceName).create_context(parsed._config);
}
ov::AnyMap ov::CoreImpl::get_supported_property(const std::string& full_device_name,
const ov::AnyMap& user_properties,
const bool keep_core_property) const {
if (ov::is_virtual_device(full_device_name)) {
// Considerations:
// 1. in case of virtual devices all the magic will happen on the level when
// virtual device calls ICore::get_supported_property for real HW devices
// so, for now we can return user properties almost as is without any
// filtering / flattening
// 2. The only exception here: while common properties like ov::num::streams or
// ov::hint::performance_mode are shared across all the devices, the
// ov::device::priority cannot be shared, because it's specific for current virtual
// plugin. So, we need to remove ov::device::priorities from the list, because it's
// supposed to be set for current virtual plugin and cannot be propagated down
auto return_properties = user_properties;
auto device_priorities_it = return_properties.find(ov::device::priorities.name());
if (device_priorities_it != return_properties.end()) {
return_properties.erase(device_priorities_it);
}
return return_properties;
}
const auto flattened = parse_device_config(full_device_name, {}, user_properties, keep_core_property);
const auto& flattened_config = flattened._config;
const auto& device_name = flattened._deviceName;
// virtual plugins should bypass core-level properties to HW plugins
// so, we need to report them as supported