MLIR  19.0.0git
CommutativityUtils.h
Go to the documentation of this file.
1 //===- CommutativityUtils.h - Commutativity 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 // This header file declares a function to populate the commutativity utility
10 // pattern. This function is intended to be used inside passes to simplify the
11 // matching of commutative operations by fixing the order of their operands.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #ifndef MLIR_TRANSFORMS_COMMUTATIVITYUTILS_H
16 #define MLIR_TRANSFORMS_COMMUTATIVITYUTILS_H
17 
19 
20 namespace mlir {
21 
22 /// Populates the commutativity utility patterns.
23 void populateCommutativityUtilsPatterns(RewritePatternSet &patterns);
24 
25 } // namespace mlir
26 
27 #endif // MLIR_TRANSFORMS_COMMUTATIVITYUTILS_H
Include the generated interface declarations.
void populateCommutativityUtilsPatterns(RewritePatternSet &patterns)
Populates the commutativity utility patterns.