Caffe2 - C++ API
A deep learning, cross platform ML framework
remove_inplace_ops.h
1 #pragma once
2 
3 #include <torch/csrc/jit/ir.h>
4 
5 #include <memory>
6 
7 namespace torch {
8 namespace jit {
9 // see .cpp for docs
10 TORCH_API void RemoveInplaceOps(const std::shared_ptr<Graph>& graph);
11 } // namespace jit
12 } // namespace torch
Definition: jit_type.h:17