* Copyright (c) 2025 Huawei Technologies Co., Ltd.
* This program is free software, you can redistribute it and/or modify it under the terms and conditions of
* CANN Open Software License Agreement Version 2.0 (the "License").
* Please refer to the License for details. You may not use this file except in compliance with the License.
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
* See LICENSE in the root of the software repository for the full text of the License.
*/
#include "ascir/Dialect/Asc/IR/Asc.h"
#include "mlir/IR/Builders.h"
#include "mlir/IR/OpImplementation.h"
#include "mlir/IR/PatternMatch.h"
#define GET_OP_CLASSES
#include "ascir/Dialect/Asc/IR/AscendCOps.cpp.inc"
using namespace mlir;
using namespace mlir::ascendc;
namespace {
LogicalResult eraseUnusedOp(Operation* op, PatternRewriter& rewriter)
{
if (!op->getUses().empty()) {
return failure();
}
rewriter.eraseOp(op);
return success();
}
}
LogicalResult GlobalTensorOp::canonicalize(GlobalTensorOp op, PatternRewriter& rewriter)
{
return eraseUnusedOp(op, rewriter);
}
LogicalResult LocalTensorOp::canonicalize(LocalTensorOp op, PatternRewriter& rewriter)
{
return eraseUnusedOp(op, rewriter);
}
LogicalResult PipeBarrierOp::canonicalize(PipeBarrierOp op, PatternRewriter& rewriter)
{
Block* block = op->getBlock();
auto nextIt = std::next(Block::iterator(op));
if (nextIt == block->end())
return failure();
if (auto nextOp = dyn_cast<ascendc::PipeBarrierOp>(*nextIt)) {
if (op.getPipe() == Pipe::PIPE_ALL) {
rewriter.eraseOp(nextOp);
return success();
}
if (op->getAttrs() == nextOp->getAttrs() || nextOp.getPipe() == Pipe::PIPE_ALL) {
rewriter.eraseOp(op);
return success();
}
}
return failure();
}
bool LocalTensorReinterpretCastOp::areCastCompatible(TypeRange inputs, TypeRange outputs)
{
return inputs.size() == 1 && outputs.size() == 1 && isa<LocalTensorType>(inputs[0]) &&
isa<LocalTensorType>(outputs[0]);
}
OpFoldResult LocalTensorReinterpretCastOp::fold([[maybe_unused]] FoldAdaptor adaptor)
{
Value in = getIn();
return in.getType() == getType() ? in : nullptr;
}
void AscendCDialect::registerOps()
{
addOperations<
#define GET_OP_LIST
#include "ascir/Dialect/Asc/IR/AscendCOps.cpp.inc"
>();
}