* Update md files. Add cpp in docs/examples * Normalize all the line endings * Fix block_id in snippets * Fix utf-8 encoding * Add new folder for snippets * Fix issues with compiling code from snippets * Added conteiner iterator fix
15 lines
284 B
C++
15 lines
284 B
C++
#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;
|
|
}
|