* Updated copyright headers
* Revert "Fixed linker warnings in docs snippets on Windows (#15119)"
This reverts commit 372699ec49.
10 lines
189 B
C++
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;
|
|
}
|