51 lines
1.6 KiB
C++
51 lines
1.6 KiB
C++
![]() |
#include "triton/Dialect/Triton/IR/Dialect.h"
|
||
|
#include "triton/Dialect/Triton/IR/Types.h"
|
||
|
|
||
|
#include "triton/Dialect/Triton/IR/AttrInterfaces.h.inc"
|
||
|
#include "llvm/ADT/StringSwitch.h"
|
||
|
#include "llvm/ADT/TypeSwitch.h"
|
||
|
#include "llvm/Support/raw_ostream.h"
|
||
|
|
||
|
#include "mlir/IR/DialectImplementation.h"
|
||
|
|
||
|
#include "mlir/Transforms/InliningUtils.h"
|
||
|
#include "triton/Dialect/Triton/IR/Dialect.cpp.inc"
|
||
|
|
||
|
using namespace mlir;
|
||
|
using namespace mlir::triton;
|
||
|
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
// TritonDialect Dialect Interfaces
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
namespace {
|
||
|
struct TritonInlinerInterface : public DialectInlinerInterface {
|
||
|
using DialectInlinerInterface::DialectInlinerInterface;
|
||
|
bool isLegalToInline(Region *dest, Region *src, bool wouldBeCloned,
|
||
|
BlockAndValueMapping &valueMapping) const final {
|
||
|
return true;
|
||
|
}
|
||
|
bool isLegalToInline(Operation *, Region *, bool wouldBeCloned,
|
||
|
BlockAndValueMapping &) const final {
|
||
|
return true;
|
||
|
}
|
||
|
};
|
||
|
} // namespace
|
||
|
|
||
|
void TritonDialect::initialize() {
|
||
|
registerTypes();
|
||
|
|
||
|
addOperations<
|
||
|
#define GET_OP_LIST
|
||
|
#include "triton/Dialect/Triton/IR/Ops.cpp.inc"
|
||
|
>();
|
||
|
|
||
|
// We can also add interface here.
|
||
|
addInterfaces<TritonInlinerInterface>();
|
||
|
}
|
||
|
|
||
|
Operation *TritonDialect::materializeConstant(OpBuilder &builder,
|
||
|
Attribute value, Type type,
|
||
|
Location loc) {
|
||
|
return builder.create<arith::ConstantOp>(loc, type, value);
|
||
|
}
|