Home
last modified time | relevance | path

Searched refs:GraphExecutorImplBase (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/pytorch/torch/csrc/jit/runtime/
H A Dgraph_executor.cpp573 void GraphExecutorImplBase::run(Stack& stack) { in run()
590 c10::intrusive_ptr<Future> GraphExecutorImplBase::runAsync( in runAsync()
626 struct GraphExecutorImpl : public GraphExecutorImplBase {
630 : GraphExecutorImplBase(graph, std::move(function_name)), in GraphExecutorImpl()
802 dynamic_cast<GraphExecutorImplBase*>( in GraphExecutor()
806 : dynamic_cast<GraphExecutorImplBase*>( in GraphExecutor()
810 : dynamic_cast<GraphExecutorImplBase*>( in GraphExecutor()
819 ? dynamic_cast<GraphExecutorImplBase*>( in GraphExecutor()
823 : dynamic_cast<GraphExecutorImplBase*>( in GraphExecutor()
H A Dgraph_executor_impl.h57 struct GraphExecutorImplBase { struct
65 GraphExecutorImplBase( in GraphExecutorImplBase() function
83 virtual ~GraphExecutorImplBase() = default;
H A Dgraph_executor.h62 struct GraphExecutorImplBase;
98 std::shared_ptr<GraphExecutorImplBase> pImpl;
H A Dsimple_graph_executor_impl.h8 struct TORCH_API SimpleGraphExecutorImpl : public GraphExecutorImplBase {
H A Dsimple_graph_executor_impl.cpp12 : GraphExecutorImplBase(graph, std::move(function_name)) {} in SimpleGraphExecutorImpl()
H A Dprofiling_graph_executor_impl.h14 struct TORCH_API ProfilingGraphExecutorImpl : public GraphExecutorImplBase {
H A Dprofiling_graph_executor_impl.cpp601 : GraphExecutorImplBase(graph, std::move(function_name)) { in ProfilingGraphExecutorImpl()