1 #pragma once 2 3 #include <torch/csrc/jit/ir/ir.h> 4 5 namespace torch::jit { 6 7 // Inline function and method calls. 8 TORCH_API void Inline(Graph& graph); 9 10 TORCH_API GraphFunction* tryToGraphFunction(Node* n); 11 12 } // namespace torch::jit 13