1#pragma once
2
3#include <torch/csrc/jit/ir/ir.h>
4
5namespace torch {
6namespace jit {
7
8TORCH_API void RemoveRedundantProfiles(std::shared_ptr<Graph>& graph);
9TORCH_API void RemoveRedundantProfiles(Block* block, AliasDb& db);
10} // namespace jit
11} // namespace torch
12