mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Follows #131034 Pull Request resolved: https://github.com/pytorch/pytorch/pull/131735 Approved by: https://github.com/ezyang
15 lines
327 B
C++
15 lines
327 B
C++
#pragma once
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include <torch/csrc/Export.h>
|
|
#include <torch/csrc/jit/ir/ir.h>
|
|
|
|
namespace torch::jit {
|
|
|
|
TORCH_API void InlineLoopCondition(std::shared_ptr<Graph>& graph);
|
|
TORCH_API void InlineBlockBeforeNode(Node* before_node, Block* block);
|
|
|
|
} // namespace torch::jit
|