1#pragma once
2
3#include <torch/csrc/jit/ir/ir.h>
4
5namespace torch {
6namespace jit {
7
8// updates the types of tuples according to the type of their current inputs.
9TORCH_API void RefineTupleTypes(std::shared_ptr<Graph>& graph);
10
11} // namespace jit
12} // namespace torch
13