Home
last modified time | relevance | path

Searched defs:CodeImpl (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/pytorch/torch/csrc/jit/runtime/interpreter/
H A Dcode_impl.h70 struct CodeImpl { struct
72 std::vector<Instruction> instructions_;
74 const c10::unique_t node_stack_attr_symbol_ =
77 std::vector<std::vector<NodeSourceInfo>> expanded_node_stacks_;
82 std::vector<Node*> instructions_source_;
83 std::vector<IValue> constant_table_;
84 std::vector<Operation> operator_table_;
86 std::vector<Operator> full_operator_table_;
94 operator_table_inv_;
95 std::vector<Function*> function_table_;
[all …]
/aosp_15_r20/external/pytorch/torch/csrc/jit/runtime/
H A Dinterpreter.cpp61 using CodeImpl = interpreter::CodeImpl; typedef