MLIR 24.0.0git
CompositePass.h
Go to the documentation of this file.
1//===- CompositePass.h - Composite pass utilities ---------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef MLIR_TRANSFORMS_COMPOSITEPASS_H
10#define MLIR_TRANSFORMS_COMPOSITEPASS_H
11
12namespace mlir {
13
14/// Action to take when `CompositeFixedPointPass` fails to converge within
15/// its configured maximum number of iterations.
17 /// Emit a warning.
19 /// Emit an error and fail the pass.
21 /// Do nothing.
23};
24
25} // namespace mlir
26
27#endif // MLIR_TRANSFORMS_COMPOSITEPASS_H
Include the generated interface declarations.
ConvergenceFailureAction
Action to take when CompositeFixedPointPass fails to converge within its configured maximum number of...