Files
openvino/docs/snippets/gpu/custom_kernels_api.cpp
Ilya Lavrenov e0b12009ea Removed old headers from OV 2.0 API (#12214)
* Removed old headers from OV 2.0 API

* FIxed clang

* Fixed warning

* Updated OMZ submodule

* Fixed gpu tests build
2022-08-12 11:35:36 +04:00

13 lines
265 B
C++

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