pytorch/torch/csrc/jit/script/builtin_functions.h
Zachary DeVito 6e657c5586 Add CallMethod, inline eagerly (#21116)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/21116
ghimport-source-id: 3c47e335dd80f52216e50e0a215cedc1862a9e78

Reviewed By: eellison

Differential Revision: D15552816

Pulled By: zdevito

fbshipit-source-id: 708fe87439d94117dca0a26c98f0917f497f718f
2019-06-03 21:35:11 -07:00

15 lines
294 B
C++

#pragma once
#include <torch/csrc/WindowsTorchApiMacro.h>
#include <torch/csrc/jit/script/module.h>
namespace torch {
namespace jit {
namespace script {
TORCH_API const std::vector<std::shared_ptr<Function>>&
getAllBuiltinFunctionsFor(Symbol name);
}
} // namespace jit
} // namespace torch