Caffe2 - C++ API
A deep learning, cross platform ML framework
irparser.h
1 #include <string>
2 
3 namespace torch {
4 namespace jit {
5 
6 struct Graph;
7 
8 namespace script {
9 
10 // \brief Parse IR from \p STR constructing the corresponding IR in\ GRAPH.
11 void parseIR(const std::string& str, torch::jit::Graph* graph);
12 
13 } // namespace script
14 } // namespace jit
15 } // namespace torch
Definition: jit_type.h:17