Skip to content

Commit f675d14

Browse files
authored
[intel-npu] Adding EXECUTION_DEVICES read-only property (openvinotoolkit#24531)
### Details: - Adding EXECUTION_DEVICES read-only property for intel-npu plugin. ### Tickets: - EISW-112990
1 parent 9a78d5f commit f675d14

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/plugins/intel_npu/src/plugin/src/plugin.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -364,6 +364,16 @@ Plugin::Plugin()
364364
[&](const Config& config) {
365365
return _metrics->GetDeviceType(get_specified_device_name(config));
366366
}}},
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+
}}},
367377
// OV Internals
368378
// =========
369379
{ov::internal::caching_properties.name(),

0 commit comments

Comments
 (0)