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 {
8
9TORCH_API extern std::function<void(std::shared_ptr<Graph>&)>&
10getFuseFrozenConvAddReluImpl();
11
12TORCH_API void FuseFrozenConvAddRelu(std::shared_ptr<Graph>& graph);
13
14} // namespace jit
15} // namespace torch
16