11 lines
225 B
C++
11 lines
225 B
C++
#include <ie_core.hpp>
|
|
|
|
int main() {
|
|
using namespace InferenceEngine;
|
|
//! [part1]
|
|
InferenceEngine::Core core;
|
|
bool dumpDotFile = core.GetConfig("HETERO", HETERO_CONFIG_KEY(DUMP_GRAPH_DOT)).as<bool>();
|
|
//! [part1]
|
|
return 0;
|
|
}
|