Bump llvm-project to e31c77b1827fa4dd3511f21af11cfab18ecf6d38

Signed-off-by: Bairen Yi <yibairen.byron@bytedance.com>
pull/185/head
Bairen Yi 2021-03-09 21:58:03 +08:00 committed by Sean Silva
parent 06373dcbbb
commit 53b01cb9ba
12 changed files with 16 additions and 18 deletions

@ -1 +1 @@
Subproject commit c68d2895a1f4019b387c69d1e5eec31b0eb5e7b0 Subproject commit e31c77b1827fa4dd3511f21af11cfab18ecf6d38

View File

@ -21,9 +21,7 @@ namespace py = pybind11;
using namespace torch_mlir; using namespace torch_mlir;
static py::object getMlirIrClass(const char *className) { static py::object getMlirIrClass(const char *className) {
// Note that the "mlir" module may be a loader which internally sets up return py::module::import("mlir.ir").attr(className);
// the child modules, so it must be resolved incrementally (vs "mlir.ir").
return py::module::import("mlir").attr("ir").attr(className);
} }
static py::object createPythonContextIfNone(py::object contextObj) { static py::object createPythonContextIfNone(py::object contextObj) {

View File

@ -221,8 +221,8 @@ MlirAttribute torch_mlir::converTensorToMlirElementsAttr(at::Tensor tensor,
elementType = typeMapper.mapFromTorchScalarType(tensor.scalar_type()); elementType = typeMapper.mapFromTorchScalarType(tensor.scalar_type());
} }
std::vector<int64_t> shape(tensor.sizes().begin(), tensor.sizes().end()); std::vector<int64_t> shape(tensor.sizes().begin(), tensor.sizes().end());
MlirType shapedType = mlirRankedTensorTypeGetChecked( MlirType shapedType = mlirRankedTensorTypeGetChecked(loc, shape.size(),
shape.size(), shape.data(), elementType, loc); shape.data(), elementType);
if (mlirTypeIsNull(shapedType)) { if (mlirTypeIsNull(shapedType)) {
throwUnsupportedTensorError(); throwUnsupportedTensorError();
} }

View File

@ -356,7 +356,7 @@ def Basicpy_ExecOp : Basicpy_Op<"exec", [
let skipDefaultBuilders = 1; let skipDefaultBuilders = 1;
let builders = [ let builders = [
OpBuilderDAG<(ins)>, OpBuilder<(ins)>,
]; ];
let extraClassDeclaration = [{ let extraClassDeclaration = [{
OpBuilder getBodyBuilder() { OpBuilder getBodyBuilder() {
@ -404,7 +404,7 @@ def Basicpy_FuncTemplateCallOp : Basicpy_Op<"func_template_call", []> {
let assemblyFormat = "$callee `(` $args `)` `kw` $arg_names attr-dict `:` functional-type($args, results)"; let assemblyFormat = "$callee `(` $args `)` `kw` $arg_names attr-dict `:` functional-type($args, results)";
let skipDefaultBuilders = 1; let skipDefaultBuilders = 1;
let builders = [ let builders = [
OpBuilderDAG<(ins)>, OpBuilder<(ins)>,
]; ];
} }
@ -475,7 +475,7 @@ def Basicpy_FuncTemplateOp : Basicpy_Op<"func_template", [
let skipDefaultBuilders = 1; let skipDefaultBuilders = 1;
let builders = [ let builders = [
OpBuilderDAG<(ins)>, OpBuilder<(ins)>,
]; ];
let extraClassDeclaration = [{ let extraClassDeclaration = [{
OpBuilder getBodyBuilder() { OpBuilder getBodyBuilder() {

View File

@ -291,7 +291,7 @@ def Torch_GlobalSlotInitOp : Torch_Op<"global_slot.init", [
// ensureTerminator in the default builders for SingleBlockImplicitTerminator // ensureTerminator in the default builders for SingleBlockImplicitTerminator
// on the parent torch.global_slot op. // on the parent torch.global_slot op.
// TODO: Have a SingleBlockExplicitTerminator trait. // TODO: Have a SingleBlockExplicitTerminator trait.
let builders = [OpBuilderDAG<(ins), [{ /*nothing to do */ }]>]; let builders = [OpBuilder<(ins), [{ /*nothing to do */ }]>];
let assemblyFormat = "$initialValue attr-dict `:` type($initialValue)"; let assemblyFormat = "$initialValue attr-dict `:` type($initialValue)";
} }

View File

@ -14,7 +14,7 @@ add_library(NPCOMPBackendRefJITPythonModule
target_link_libraries(NPCOMPBackendRefJITPythonModule target_link_libraries(NPCOMPBackendRefJITPythonModule
pybind11::module pybind11::module
MLIRExecutionEngine MLIRExecutionEngine
MLIRTargetLLVMIR MLIRTargetLLVMIRExport
NPCOMPRefBackendJITHelpers NPCOMPRefBackendJITHelpers
) )

View File

@ -12,7 +12,7 @@ add_npcomp_library(NPCOMPCAPI
LINK_LIBS PUBLIC LINK_LIBS PUBLIC
MLIRExecutionEngine MLIRExecutionEngine
MLIRLLVMIR MLIRLLVMIR
MLIRTargetLLVMIR MLIRTargetLLVMIRExport
NPCOMPInitAll NPCOMPInitAll
NPCOMPBasicpyDialect NPCOMPBasicpyDialect
NPCOMPNumpyDialect NPCOMPNumpyDialect

View File

@ -76,7 +76,7 @@ static MemRefType getShapeErasedMemRefType(MemRefType type) {
shape[i] = -1; shape[i] = -1;
} }
return MemRefType::get(shape, type.getElementType(), type.getAffineMaps(), return MemRefType::get(shape, type.getElementType(), type.getAffineMaps(),
type.getMemorySpace()); type.getMemorySpaceAsInt());
} }
/// Create a type cast to memref /// Create a type cast to memref

View File

@ -192,7 +192,7 @@ ObjectGraphGlobalizer::recursivelyTraverseClassType(ClassTypeOp classType) {
auto linkageName = llvm::join(nameStack, "."); auto linkageName = llvm::join(nameStack, ".");
auto globalSlot = globalBuilder.create<GlobalSlotOp>( auto globalSlot = globalBuilder.create<GlobalSlotOp>(
attr->getLoc(), linkageName, /*sym_visibility=*/nullptr, attr->getLoc(), linkageName, /*sym_visibility=*/nullptr,
TypeAttr::get(attr.type())); attr.type());
if (attr.isPrivate()) if (attr.isPrivate())
globalSlot.setVisibility(SymbolTable::Visibility::Private); globalSlot.setVisibility(SymbolTable::Visibility::Private);
AttrOfClass attrOfClass = {classType, attr.name()}; AttrOfClass attrOfClass = {classType, attr.name()};

View File

@ -9,7 +9,7 @@
#include "npcomp/RefBackend/JITHelpers/JITModule.h" #include "npcomp/RefBackend/JITHelpers/JITModule.h"
#include "mlir/ExecutionEngine/CRunnerUtils.h" #include "mlir/ExecutionEngine/CRunnerUtils.h"
#include "mlir/ExecutionEngine/OptUtils.h" #include "mlir/ExecutionEngine/OptUtils.h"
#include "mlir/Target/LLVMIR.h" #include "mlir/Target/LLVMIR/Dialect/LLVMIR/LLVMToLLVMIRTranslation.h"
#include "npcomp/RefBackend/RefBackend.h" #include "npcomp/RefBackend/RefBackend.h"
using namespace refback; using namespace refback;

View File

@ -11,8 +11,8 @@ def _load_extension():
import _npcomp import _npcomp
sys.setdlopenflags(flags) sys.setdlopenflags(flags)
import mlir from mlir._cext_loader import _cext
mlir._cext.globals.append_dialect_search_prefix("npcomp.dialects") _cext.globals.append_dialect_search_prefix("npcomp.dialects")
return _npcomp return _npcomp

View File

@ -4,4 +4,4 @@
# Generated tablegen dialects expect to be able to find some symbols from # Generated tablegen dialects expect to be able to find some symbols from
# the mlir.dialects package. # the mlir.dialects package.
from mlir.dialects import _cext, segmented_accessor, equally_sized_accessor, extend_opview_class, get_default_loc_context from mlir.dialects._ods_common import _cext, segmented_accessor, equally_sized_accessor, extend_opview_class, get_default_loc_context