blob: c78488c1e39c09fd7952a251784f9f7cc4fa6764 [file]
// Copyright 2021 The IREE Authors
//
// Licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#include "iree/compiler/Utils/PassUtils.h"
#include "llvm/Support/Debug.h"
#define DEBUG_TYPE "iree-utils"
namespace mlir::iree_compiler {
void signalFixedPointModified(Operation *rootOp) {
MLIRContext *context = rootOp->getContext();
if (!rootOp->hasAttr("iree.fixedpoint.iteration")) {
LLVM_DEBUG(llvm::dbgs() << "Not signaling fixed-point modification: not "
"running under fixed point iterator");
return;
}
LLVM_DEBUG(llvm::dbgs() << "Signalling fixed-point iterator modification");
rootOp->setAttr("iree.fixedpoint.modified", UnitAttr::get(context));
}
} // namespace mlir::iree_compiler