xref: /aosp_15_r20/external/pytorch/torch/csrc/jit/passes/integer_value_refinement.h (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1 #pragma once
2 
3 #include <torch/csrc/jit/ir/ir.h>
4 
5 namespace torch::jit {
6 
7 // return true if graph is modified
8 TORCH_API bool RefineIntegerValues(const std::shared_ptr<Graph>& graph);
9 
10 } // namespace torch::jit
11