1#pragma once
2
3#include <ATen/Context.h>
4#include <torch/csrc/jit/ir/ir.h>
5
6namespace torch {
7namespace jit {
8namespace fuser {
9namespace cuda {
10
11TORCH_CUDA_CU_API void TypePropagate(std::shared_ptr<Graph>& graph);
12
13} // namespace cuda
14} // namespace fuser
15} // namespace jit
16} // namespace torch
17