#include "openvino/runtime/core.hpp"
#include "ie_plugin_config.hpp"
int main() {
//! [part0]
ov::Core core;
// Load Myriad Extensions
core.set_property("MYRIAD", {{CONFIG_KEY(CONFIG_FILE), "<path_to_the_xml_file>"}});
return 0;
}