1#pragma once
2
3#include <torch/csrc/Export.h>
4#include <torch/csrc/jit/ir/ir.h>
5
6namespace torch {
7namespace jit {
8
9TORCH_API void CreateFunctionalGraphs(const std::shared_ptr<Graph>& graph);
10
11TORCH_API void InlineFunctionalGraphs(const std::shared_ptr<Graph>& graph);
12
13} // namespace jit
14} // namespace torch
15