1 #pragma once 2 3 #include <torch/csrc/jit/ir/ir.h> 4 5 namespace torch::jit { 6 7 // Concats multiple linear ops with the same Tensor input 8 // into a single linear op. 9 TORCH_API bool FrozenConcatLinear(std::shared_ptr<Graph>& graph); 10 11 } // namespace torch::jit 12