Files
openvino/docs/snippets/gpu/custom_kernels_api.cpp
2022-03-10 15:01:52 +03:00

12 lines
233 B
C++

#include <openvino/runtime/core.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;
}