2018-07-09 11:51:38 +08:00
|
|
|
//===- Builders.cpp - Helpers for constructing MLIR Classes ---------------===//
|
|
|
|
//
|
|
|
|
// Copyright 2019 The MLIR Authors.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
// =============================================================================
|
|
|
|
|
|
|
|
#include "mlir/IR/Builders.h"
|
2018-07-11 01:59:53 +08:00
|
|
|
#include "mlir/IR/AffineExpr.h"
|
|
|
|
#include "mlir/IR/AffineMap.h"
|
|
|
|
#include "mlir/IR/Attributes.h"
|
2018-07-09 11:51:38 +08:00
|
|
|
#include "mlir/IR/Module.h"
|
|
|
|
#include "mlir/IR/Types.h"
|
|
|
|
using namespace mlir;
|
|
|
|
|
|
|
|
Builder::Builder(Module *module) : context(module->getContext()) {}
|
|
|
|
|
2018-07-11 01:59:53 +08:00
|
|
|
Identifier Builder::getIdentifier(StringRef str) {
|
|
|
|
return Identifier::get(str, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
Module *Builder::createModule() { return new Module(context); }
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2018-07-09 11:51:38 +08:00
|
|
|
// Types.
|
2018-07-11 01:59:53 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
Eliminate "primitive" types from being a thing, splitting them into FloatType
and OtherType. Other type is now the thing that holds AffineInt, Control,
eventually Resource, Variant, String, etc. FloatType holds the floating point
types, and allows convenient query of isa<FloatType>().
This fixes issues where we allowed control to be the element type of tensor,
memref, vector. At the same time, ban AffineInt from being an element of a
vector/memref/tensor as well since we don't need it.
I updated the spec to match this as well.
PiperOrigin-RevId: 206361942
2018-07-28 04:09:58 +08:00
|
|
|
FloatType *Builder::getBF16Type() { return Type::getBF16(context); }
|
2018-07-09 11:51:38 +08:00
|
|
|
|
Eliminate "primitive" types from being a thing, splitting them into FloatType
and OtherType. Other type is now the thing that holds AffineInt, Control,
eventually Resource, Variant, String, etc. FloatType holds the floating point
types, and allows convenient query of isa<FloatType>().
This fixes issues where we allowed control to be the element type of tensor,
memref, vector. At the same time, ban AffineInt from being an element of a
vector/memref/tensor as well since we don't need it.
I updated the spec to match this as well.
PiperOrigin-RevId: 206361942
2018-07-28 04:09:58 +08:00
|
|
|
FloatType *Builder::getF16Type() { return Type::getF16(context); }
|
2018-07-09 11:51:38 +08:00
|
|
|
|
Eliminate "primitive" types from being a thing, splitting them into FloatType
and OtherType. Other type is now the thing that holds AffineInt, Control,
eventually Resource, Variant, String, etc. FloatType holds the floating point
types, and allows convenient query of isa<FloatType>().
This fixes issues where we allowed control to be the element type of tensor,
memref, vector. At the same time, ban AffineInt from being an element of a
vector/memref/tensor as well since we don't need it.
I updated the spec to match this as well.
PiperOrigin-RevId: 206361942
2018-07-28 04:09:58 +08:00
|
|
|
FloatType *Builder::getF32Type() { return Type::getF32(context); }
|
2018-07-09 11:51:38 +08:00
|
|
|
|
Eliminate "primitive" types from being a thing, splitting them into FloatType
and OtherType. Other type is now the thing that holds AffineInt, Control,
eventually Resource, Variant, String, etc. FloatType holds the floating point
types, and allows convenient query of isa<FloatType>().
This fixes issues where we allowed control to be the element type of tensor,
memref, vector. At the same time, ban AffineInt from being an element of a
vector/memref/tensor as well since we don't need it.
I updated the spec to match this as well.
PiperOrigin-RevId: 206361942
2018-07-28 04:09:58 +08:00
|
|
|
FloatType *Builder::getF64Type() { return Type::getF64(context); }
|
2018-07-09 11:51:38 +08:00
|
|
|
|
Eliminate "primitive" types from being a thing, splitting them into FloatType
and OtherType. Other type is now the thing that holds AffineInt, Control,
eventually Resource, Variant, String, etc. FloatType holds the floating point
types, and allows convenient query of isa<FloatType>().
This fixes issues where we allowed control to be the element type of tensor,
memref, vector. At the same time, ban AffineInt from being an element of a
vector/memref/tensor as well since we don't need it.
I updated the spec to match this as well.
PiperOrigin-RevId: 206361942
2018-07-28 04:09:58 +08:00
|
|
|
OtherType *Builder::getAffineIntType() { return Type::getAffineInt(context); }
|
2018-07-09 11:51:38 +08:00
|
|
|
|
Eliminate "primitive" types from being a thing, splitting them into FloatType
and OtherType. Other type is now the thing that holds AffineInt, Control,
eventually Resource, Variant, String, etc. FloatType holds the floating point
types, and allows convenient query of isa<FloatType>().
This fixes issues where we allowed control to be the element type of tensor,
memref, vector. At the same time, ban AffineInt from being an element of a
vector/memref/tensor as well since we don't need it.
I updated the spec to match this as well.
PiperOrigin-RevId: 206361942
2018-07-28 04:09:58 +08:00
|
|
|
OtherType *Builder::getTFControlType() { return Type::getTFControl(context); }
|
2018-07-28 02:07:12 +08:00
|
|
|
|
2018-08-02 03:55:27 +08:00
|
|
|
OtherType *Builder::getTFStringType() { return Type::getTFString(context); }
|
|
|
|
|
2018-07-09 11:51:38 +08:00
|
|
|
IntegerType *Builder::getIntegerType(unsigned width) {
|
|
|
|
return Type::getInteger(width, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
FunctionType *Builder::getFunctionType(ArrayRef<Type *> inputs,
|
|
|
|
ArrayRef<Type *> results) {
|
|
|
|
return FunctionType::get(inputs, results, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
VectorType *Builder::getVectorType(ArrayRef<unsigned> shape,
|
|
|
|
Type *elementType) {
|
|
|
|
return VectorType::get(shape, elementType);
|
|
|
|
}
|
|
|
|
|
|
|
|
RankedTensorType *Builder::getTensorType(ArrayRef<int> shape,
|
|
|
|
Type *elementType) {
|
|
|
|
return RankedTensorType::get(shape, elementType);
|
|
|
|
}
|
|
|
|
|
|
|
|
UnrankedTensorType *Builder::getTensorType(Type *elementType) {
|
|
|
|
return UnrankedTensorType::get(elementType);
|
|
|
|
}
|
2018-07-11 01:59:53 +08:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Attributes.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
BoolAttr *Builder::getBoolAttr(bool value) {
|
|
|
|
return BoolAttr::get(value, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
IntegerAttr *Builder::getIntegerAttr(int64_t value) {
|
|
|
|
return IntegerAttr::get(value, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
FloatAttr *Builder::getFloatAttr(double value) {
|
|
|
|
return FloatAttr::get(value, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
StringAttr *Builder::getStringAttr(StringRef bytes) {
|
|
|
|
return StringAttr::get(bytes, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
ArrayAttr *Builder::getArrayAttr(ArrayRef<Attribute *> value) {
|
|
|
|
return ArrayAttr::get(value, context);
|
|
|
|
}
|
|
|
|
|
2018-07-19 07:29:21 +08:00
|
|
|
AffineMapAttr *Builder::getAffineMapAttr(AffineMap *value) {
|
|
|
|
return AffineMapAttr::get(value, context);
|
|
|
|
}
|
|
|
|
|
2018-08-03 16:54:46 +08:00
|
|
|
TypeAttr *Builder::getTypeAttr(Type *type) {
|
|
|
|
return TypeAttr::get(type, context);
|
|
|
|
}
|
|
|
|
|
2018-07-11 01:59:53 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Affine Expressions and Affine Map.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
AffineMap *Builder::getAffineMap(unsigned dimCount, unsigned symbolCount,
|
2018-07-12 12:31:07 +08:00
|
|
|
ArrayRef<AffineExpr *> results,
|
|
|
|
ArrayRef<AffineExpr *> rangeSizes) {
|
|
|
|
return AffineMap::get(dimCount, symbolCount, results, rangeSizes, context);
|
2018-07-11 01:59:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
AffineDimExpr *Builder::getDimExpr(unsigned position) {
|
|
|
|
return AffineDimExpr::get(position, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
AffineSymbolExpr *Builder::getSymbolExpr(unsigned position) {
|
|
|
|
return AffineSymbolExpr::get(position, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
AffineConstantExpr *Builder::getConstantExpr(int64_t constant) {
|
|
|
|
return AffineConstantExpr::get(constant, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
AffineExpr *Builder::getAddExpr(AffineExpr *lhs, AffineExpr *rhs) {
|
2018-07-20 05:08:50 +08:00
|
|
|
return AffineBinaryOpExpr::get(AffineExpr::Kind::Add, lhs, rhs, context);
|
2018-07-11 01:59:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
AffineExpr *Builder::getMulExpr(AffineExpr *lhs, AffineExpr *rhs) {
|
2018-07-20 05:08:50 +08:00
|
|
|
return AffineBinaryOpExpr::get(AffineExpr::Kind::Mul, lhs, rhs, context);
|
2018-07-11 01:59:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
AffineExpr *Builder::getModExpr(AffineExpr *lhs, AffineExpr *rhs) {
|
2018-07-20 05:08:50 +08:00
|
|
|
return AffineBinaryOpExpr::get(AffineExpr::Kind::Mod, lhs, rhs, context);
|
2018-07-11 01:59:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
AffineExpr *Builder::getFloorDivExpr(AffineExpr *lhs, AffineExpr *rhs) {
|
2018-07-20 05:08:50 +08:00
|
|
|
return AffineBinaryOpExpr::get(AffineExpr::Kind::FloorDiv, lhs, rhs, context);
|
2018-07-11 01:59:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
AffineExpr *Builder::getCeilDivExpr(AffineExpr *lhs, AffineExpr *rhs) {
|
2018-07-20 05:08:50 +08:00
|
|
|
return AffineBinaryOpExpr::get(AffineExpr::Kind::CeilDiv, lhs, rhs, context);
|
2018-07-11 01:59:53 +08:00
|
|
|
}
|
2018-07-20 00:52:39 +08:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2018-07-25 01:15:13 +08:00
|
|
|
// CFG function elements.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Basic block.
|
|
|
|
BasicBlock *CFGFuncBuilder::createBlock() {
|
|
|
|
BasicBlock *b = new BasicBlock();
|
|
|
|
function->push_back(b);
|
|
|
|
setInsertionPoint(b);
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2018-08-08 00:12:35 +08:00
|
|
|
/// Create an operation given the fields represented as an OperationState.
|
|
|
|
OperationInst *CFGFuncBuilder::createOperation(const OperationState &state) {
|
|
|
|
SmallVector<CFGValue *, 8> operands;
|
|
|
|
operands.reserve(state.operands.size());
|
|
|
|
for (auto elt : state.operands)
|
|
|
|
operands.push_back(cast<CFGValue>(elt));
|
|
|
|
|
|
|
|
auto *op = OperationInst::create(state.name, operands, state.types,
|
|
|
|
state.attributes, context);
|
|
|
|
block->getOperations().insert(insertPoint, op);
|
|
|
|
return op;
|
|
|
|
}
|
|
|
|
|
2018-07-25 01:15:13 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Statements.
|
2018-07-20 00:52:39 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2018-08-08 00:12:35 +08:00
|
|
|
/// Create an operation given the fields represented as an OperationState.
|
|
|
|
OperationStmt *MLFuncBuilder::createOperation(const OperationState &state) {
|
|
|
|
SmallVector<MLValue *, 8> operands;
|
|
|
|
operands.reserve(state.operands.size());
|
|
|
|
for (auto elt : state.operands)
|
|
|
|
operands.push_back(cast<MLValue>(elt));
|
|
|
|
|
|
|
|
auto *op = OperationStmt::create(state.name, operands, state.types,
|
|
|
|
state.attributes, context);
|
|
|
|
block->getStatements().insert(insertPoint, op);
|
|
|
|
return op;
|
|
|
|
}
|
|
|
|
|
2018-07-20 00:52:39 +08:00
|
|
|
ForStmt *MLFuncBuilder::createFor(AffineConstantExpr *lowerBound,
|
|
|
|
AffineConstantExpr *upperBound,
|
|
|
|
AffineConstantExpr *step) {
|
|
|
|
if (!step)
|
|
|
|
step = getConstantExpr(1);
|
2018-07-31 06:18:10 +08:00
|
|
|
auto *stmt = new ForStmt(lowerBound, upperBound, step, context);
|
2018-08-01 14:14:16 +08:00
|
|
|
block->getStatements().insert(insertPoint, stmt);
|
2018-07-20 00:52:39 +08:00
|
|
|
return stmt;
|
|
|
|
}
|