12 lines
211 B
C++
12 lines
211 B
C++
#include <openvino/runtime/core.hpp>
|
|
|
|
int main() {
|
|
using namespace InferenceEngine;
|
|
//! [part2]
|
|
ov::Core core;
|
|
core.set_property("CPU", ov::hint::inference_precision(ov::element::f32));
|
|
//! [part2]
|
|
|
|
return 0;
|
|
}
|