#pragma once

#include <torch/csrc/jit/api/module.h>
#include <torch/csrc/jit/ir/ir.h>

namespace torch::jit {

TORCH_API extern std::function<void(std::shared_ptr<Graph>&)>&
getFuseFrozenConvAddReluImpl();

TORCH_API void FuseFrozenConvAddRelu(std::shared_ptr<Graph>& graph);

} // namespace torch::jit
