Files
openvino/docs/snippets/cpu/Bfloat16Inference0.cpp
Maksim Kutakov dfdbdb4601 [CPU] CPU plugin docs refactoring (#10970)
* CPU device documentation refresh

* Bfloat16 inference page aligned with the new API

* Bfloat16 inference section moved to CPU main

* First review comments applied

* Second review step comments applied

* OneDNN reference changed to the GitHub page

* AvgPool added to the oneDNN ops list
2022-03-18 14:56:22 +03:00

10 lines
189 B
C++

#include <openvino/runtime/core.hpp>
int main() {
//! [part0]
ov::Core core;
auto cpuOptimizationCapabilities = core.get_property("CPU", ov::device::capabilities);
//! [part0]
return 0;
}