Caffe2 - C++ API
A deep learning, cross platform ML framework
inline_autodiff_subgraphs.h
1 #pragma once
2 
3 #include <torch/csrc/jit/ir.h>
4 
5 namespace torch {
6 namespace jit {
7 
8 TORCH_API void InlineAutodiffSubgraphs(
9  std::shared_ptr<Graph>& graph,
10  size_t threshold = 5);
11 
12 }
13 } // namespace torch
Definition: jit_type.h:17