Files
openvino/docs/snippets/Graph_debug_capabilities1.cpp

15 lines
284 B
C++
Raw Normal View History

#include <inference_engine.hpp>
#include <ngraph/pass/visualize_tree.hpp>
int main() {
using namespace InferenceEngine;
//! [part1]
std::shared_ptr<ngraph::Function> nGraph;
// ...
CNNNetwork network(nGraph);
network.serialize("test_ir.xml", "test_ir.bin");
//! [part1]
return 0;
}