2020-09-29 09:36:00 +08:00
|
|
|
//===- module_builder.cpp -------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is licensed under a pytorch-style license
|
|
|
|
// See frontends/pytorch/LICENSE for license information.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "module_builder.h"
|
|
|
|
|
2020-11-21 09:03:23 +08:00
|
|
|
#include "graph_importer.h"
|
|
|
|
|
2020-10-13 12:39:48 +08:00
|
|
|
#include "mlir-c/Bindings/Python/Interop.h"
|
2020-09-29 09:36:00 +08:00
|
|
|
#include "mlir-c/Registration.h"
|
|
|
|
#include "mlir-c/StandardAttributes.h"
|
|
|
|
#include "mlir-c/StandardTypes.h"
|
|
|
|
#include "npcomp-c/Registration.h"
|
|
|
|
|
|
|
|
namespace py = pybind11;
|
|
|
|
using namespace torch_mlir;
|
|
|
|
|
2020-10-13 12:39:48 +08:00
|
|
|
static py::object getMlirIrClass(const char *className) {
|
|
|
|
// Note that the "mlir" module may be a loader which internally sets up
|
|
|
|
// the child modules, so it must be resolved incrementally (vs "mlir.ir").
|
|
|
|
return py::module::import("mlir").attr("ir").attr(className);
|
|
|
|
}
|
2020-09-29 09:36:00 +08:00
|
|
|
|
2020-10-13 12:39:48 +08:00
|
|
|
static py::object createPythonContextIfNone(py::object contextObj) {
|
|
|
|
if (contextObj.is_none()) {
|
|
|
|
contextObj = getMlirIrClass("Context")();
|
2020-09-29 09:36:00 +08:00
|
|
|
}
|
2020-10-13 12:39:48 +08:00
|
|
|
return contextObj;
|
|
|
|
}
|
2020-09-29 09:36:00 +08:00
|
|
|
|
2020-10-13 12:39:48 +08:00
|
|
|
static MlirContext castPythonObjectToMlirContext(py::object &contextObj) {
|
|
|
|
assert(!contextObj.is_none() && "context cannot be None");
|
|
|
|
auto contextCapsule = contextObj.attr(MLIR_PYTHON_CAPI_PTR_ATTR);
|
|
|
|
MlirContext context = mlirPythonCapsuleToContext(contextCapsule.ptr());
|
|
|
|
if (mlirContextIsNull(context)) {
|
|
|
|
// An error will have already been set by the above.
|
|
|
|
throw py::error_already_set();
|
2020-09-29 09:36:00 +08:00
|
|
|
}
|
2020-10-13 12:39:48 +08:00
|
|
|
return context;
|
|
|
|
}
|
|
|
|
|
|
|
|
static py::object castMlirModuleToPythonObject(MlirModule module) {
|
|
|
|
auto moduleClass = getMlirIrClass("Module");
|
|
|
|
auto moduleCapsule =
|
|
|
|
py::reinterpret_steal<py::object>(mlirPythonModuleToCapsule(module));
|
|
|
|
return moduleClass.attr(MLIR_PYTHON_CAPI_FACTORY_ATTR)(moduleCapsule);
|
|
|
|
}
|
2020-09-29 09:36:00 +08:00
|
|
|
|
2020-10-13 12:39:48 +08:00
|
|
|
static MlirModule createEmptyModule(MlirContext context) {
|
|
|
|
// TODO: Extract location from backtrace.
|
|
|
|
MlirLocation loc = mlirLocationUnknownGet(context);
|
|
|
|
return mlirModuleCreateEmpty(loc);
|
|
|
|
}
|
|
|
|
|
|
|
|
ModuleBuilder::ModuleBuilder(pybind11::object contextObj)
|
|
|
|
: contextObj(createPythonContextIfNone(std::move(contextObj))),
|
|
|
|
context(castPythonObjectToMlirContext(this->contextObj)),
|
|
|
|
module(createEmptyModule(this->context)),
|
|
|
|
moduleObj(castMlirModuleToPythonObject(module)),
|
|
|
|
unknownLoc(mlirLocationUnknownGet(context)), typeMapper(this->context) {
|
2020-09-29 09:36:00 +08:00
|
|
|
// TODO: Rework this once dialect registration C-APIs are in place.
|
|
|
|
// https://reviews.llvm.org/D88162
|
|
|
|
mlirRegisterAllDialects(context);
|
|
|
|
npcompRegisterAllDialects(context);
|
2020-10-02 09:59:58 +08:00
|
|
|
|
|
|
|
// Terminator will always be the first op of an empty module.
|
|
|
|
terminator = mlirBlockGetFirstOperation(getBodyBlock());
|
2020-09-29 09:36:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<AcapController>
|
2020-10-02 09:59:58 +08:00
|
|
|
ModuleBuilder::startCaptureFunction(std::string &name,
|
|
|
|
std::vector<at::Tensor> args) {
|
|
|
|
// TODO: Verify that arguments do not alias each other.
|
2020-09-29 09:36:00 +08:00
|
|
|
llvm::SmallVector<MlirType, 4> inputTypes;
|
2020-10-02 09:59:58 +08:00
|
|
|
for (auto &arg : args) {
|
|
|
|
inputTypes.push_back(typeMapper.forwardTensorToType(arg));
|
|
|
|
}
|
2020-09-29 09:36:00 +08:00
|
|
|
|
2020-10-02 09:59:58 +08:00
|
|
|
// TODO: Extract a traceback and use in place of unknownLoc.
|
2020-11-21 09:03:23 +08:00
|
|
|
auto inserter = createInserter();
|
2020-10-02 09:59:58 +08:00
|
|
|
auto funcBuilder =
|
2020-11-21 09:03:23 +08:00
|
|
|
FuncBuilder::createFunction(inserter, unknownLoc, name, inputTypes);
|
2020-10-02 09:59:58 +08:00
|
|
|
// Map block arguments.
|
|
|
|
MlirBlock entryBlock = funcBuilder->getEntryBlock();
|
|
|
|
assert(mlirBlockGetNumArguments(entryBlock) ==
|
|
|
|
static_cast<intptr_t>(args.size()) &&
|
|
|
|
"entry block incorrect arg arity");
|
|
|
|
for (auto it : llvm::enumerate(args)) {
|
|
|
|
funcBuilder->mapTensor(it.value(),
|
|
|
|
mlirBlockGetArgument(entryBlock, it.index()));
|
2020-09-29 09:36:00 +08:00
|
|
|
}
|
2020-10-06 14:21:21 +08:00
|
|
|
return std::make_shared<AcapController>(typeMapper, std::move(funcBuilder));
|
2020-10-02 09:59:58 +08:00
|
|
|
}
|
2020-09-29 09:36:00 +08:00
|
|
|
|
2020-11-21 09:03:23 +08:00
|
|
|
void ModuleBuilder::importFunction(torch::jit::StrongFunctionPtr function) {
|
|
|
|
auto inserter = createInserter();
|
|
|
|
GraphImporter::MlirMappingOptions mappingOptions{
|
|
|
|
context,
|
|
|
|
llvm::None, // genericFuncName (default to auto)
|
|
|
|
llvm::None, // funcName (default to auto)
|
|
|
|
typeMapper, inserter,
|
|
|
|
};
|
|
|
|
auto graphImporter = GraphImporter::forPythonJitFunc(
|
|
|
|
function.function_, std::move(mappingOptions));
|
|
|
|
graphImporter->initialize();
|
|
|
|
graphImporter->importGenericFunc();
|
|
|
|
}
|
|
|
|
|
|
|
|
FuncBuilder::Inserter ModuleBuilder::createInserter() {
|
|
|
|
MlirBlock block = getBodyBlock();
|
|
|
|
MlirOperation terminator = this->terminator;
|
|
|
|
return [=](MlirOperation op) {
|
|
|
|
mlirBlockInsertOwnedOperationBefore(block, terminator, op);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-10-02 09:59:58 +08:00
|
|
|
MlirBlock ModuleBuilder::getBodyBlock() {
|
|
|
|
MlirOperation moduleOp = mlirModuleGetOperation(module);
|
|
|
|
return mlirRegionGetFirstBlock(mlirOperationGetRegion(moduleOp, 0));
|
2020-09-29 09:36:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ModuleBuilder::bind(py::module &m) {
|
|
|
|
py::class_<ModuleBuilder>(m, "ModuleBuilder")
|
2020-10-13 12:39:48 +08:00
|
|
|
.def(py::init<py::object>(), py::arg("context") = py::none())
|
|
|
|
.def_property_readonly("context", &ModuleBuilder::getContextObj)
|
|
|
|
.def_property_readonly("module", &ModuleBuilder::getModuleObj)
|
2020-09-29 09:36:00 +08:00
|
|
|
.def("capture_function", &ModuleBuilder::startCaptureFunction,
|
2020-11-21 09:03:23 +08:00
|
|
|
py::keep_alive<0, 1>())
|
|
|
|
.def("import_function", &ModuleBuilder::importFunction);
|
2020-09-29 09:36:00 +08:00
|
|
|
}
|