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