We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a78d5f commit f675d14Copy full SHA for f675d14
src/plugins/intel_npu/src/plugin/src/plugin.cpp
@@ -364,6 +364,16 @@ Plugin::Plugin()
364
[&](const Config& config) {
365
return _metrics->GetDeviceType(get_specified_device_name(config));
366
}}},
367
+ {ov::execution_devices.name(),
368
+ {true,
369
+ ov::PropertyMutability::RO,
370
+ [&](const Config& config) {
371
+ if (_metrics->GetAvailableDevicesNames().size() > 1) {
372
+ return std::string("NPU." + config.get<DEVICE_ID>());
373
+ } else {
374
+ return std::string("NPU");
375
+ }
376
+ }}},
377
// OV Internals
378
// =========
379
{ov::internal::caching_properties.name(),
0 commit comments