• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 // Convert a graph with Loads & Stores into SSA form
12 TORCH_API void ConvertToSSA(std::shared_ptr<Graph>& graph);
13 
14 } // namespace torch::jit
15