Caffe2 - C++ API
A deep learning, cross platform ML framework
executor.h
1 #pragma once
2 
3 #include <torch/csrc/WindowsTorchApiMacro.h>
4 #include <ATen/core/stack.h>
5 
6 #include <cstdint>
7 
8 namespace torch {
9 namespace jit {
10 namespace fuser {
11 
12 // Runs the fusion associated with the key (see registerFusion() in interface.h)
13 // on the inputs taken from the given Stack.
14 TORCH_API bool runFusion(const int64_t key, Stack& stack);
15 
16 } // namespace fuser
17 } // namespace jit
18 } // namespace torch
Definition: jit_type.h:17