* 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
14 lines
322 B
C++
14 lines
322 B
C++
#include <inference_engine.hpp>
|
|
#include <ngraph/pass/visualize_tree.hpp>
|
|
|
|
|
|
int main() {
|
|
using namespace InferenceEngine;
|
|
//! [part0]
|
|
std::shared_ptr<ngraph::Function> nGraph;
|
|
// ...
|
|
ngraph::pass::VisualizeTree("after.png").run_on_function(nGraph); // Visualize the nGraph function to an image
|
|
//! [part0]
|
|
return 0;
|
|
}
|