/usr/local/lib64/python3.6/site-packages/torch/include/torch/csrc/jit/ir
NameSizeModeActions
alias_analysis.h117640644editdlrm
attributes.h49970644editdlrm
constants.h20460644editdlrm
graph_node_list.h63600644editdlrm
ir.h491560644editdlrm
irparser.h7670644editdlrm
ir_views.h46340644editdlrm
named_value.h24570644editdlrm
node_hashing.h2900644editdlrm
scope.h68250644editdlrm
subgraph_matcher.h31510644editdlrm
type_hashing.h4490644editdlrm
Edit: /usr/local/lib64/python3.6/site-packages/torch/include/torch/csrc/jit/ir/irparser.h (767B)
#pragma once #include #include #include #include namespace torch { namespace jit { struct Graph; struct Value; // \brief Parse IR from \p STR constructing the corresponding IR in\ GRAPH. TORCH_API void parseIR(const std::string& str, torch::jit::Graph* graph); /** \brief Parse IR from \p STR constructing the corresponding IR in\ GRAPH. * * \p VMAP is filled with String to Value pairs allowing to index Values in the * newly created graph by their name in the original IR string. */ TORCH_API void parseIR( const std::string& str, torch::jit::Graph* graph, std::unordered_map& vmap); } // namespace jit } // namespace torch