xref: /aosp_15_r20/external/pytorch/torch/csrc/jit/frontend/inline_loop_condition.h (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1 #pragma once
2 #include <functional>
3 #include <memory>
4 #include <string>
5 
6 #include <torch/csrc/Export.h>
7 #include <torch/csrc/jit/ir/ir.h>
8 
9 namespace torch::jit {
10 
11 TORCH_API void InlineLoopCondition(std::shared_ptr<Graph>& graph);
12 TORCH_API void InlineBlockBeforeNode(Node* before_node, Block* block);
13 
14 } // namespace torch::jit
15