11 lines
271 B
C++
11 lines
271 B
C++
#include <inference_engine.hpp>
|
|
|
|
int main() {
|
|
using namespace InferenceEngine;
|
|
//! [part0]
|
|
InferenceEngine::Core core;
|
|
auto cpuOptimizationCapabilities = core.GetMetric("CPU", METRIC_KEY(OPTIMIZATION_CAPABILITIES)).as<std::vector<std::string>>();
|
|
//! [part0]
|
|
return 0;
|
|
}
|