Files
openvino/docs/snippets/Bfloat16Inference2.cpp
2021-06-01 16:31:29 +03:00

12 lines
210 B
C++

#include <ie_core.hpp>
int main() {
using namespace InferenceEngine;
//! [part2]
InferenceEngine::Core core;
core.SetConfig({ { CONFIG_KEY(ENFORCE_BF16), CONFIG_VALUE(NO) } }, "CPU");
//! [part2]
return 0;
}