2021-06-01 16:31:29 +03:00
|
|
|
#include <ie_core.hpp>
|
|
|
|
|
#include <ngraph/function.hpp>
|
2020-09-22 18:01:48 +03:00
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|