xref: /aosp_15_r20/external/pytorch/torch/csrc/jit/passes/quantization/fusion_passes.h (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1 #pragma once
2 
3 #include <torch/csrc/jit/ir/ir.h>
4 
5 namespace torch {
6 namespace jit {
7 TORCH_API void FuseQuantizedAddRelu(std::shared_ptr<Graph>& graph);
8 } // namespace jit
9 } // namespace torch
10