1#pragma once
2
3#include <torch/csrc/jit/api/module.h>
4#include <torch/csrc/jit/ir/ir.h>
5
6namespace torch {
7namespace jit {
8TORCH_API void FuseAddRelu(script::Module& module);
9TORCH_API void FuseAddRelu(std::shared_ptr<Graph>& graph);
10} // namespace jit
11} // namespace torch
12