My Project
AffineMapDetail.h
Go to the documentation of this file.
1 //===- AffineMapDetail.h - MLIR Affine Map details Class --------*- C++ -*-===//
2 //
3 // Part of the MLIR 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 holds implementation details of AffineMap.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef AFFINEMAPDETAIL_H_
14 #define AFFINEMAPDETAIL_H_
15 
16 #include "mlir/IR/AffineExpr.h"
17 #include "mlir/IR/AffineMap.h"
18 #include "llvm/ADT/ArrayRef.h"
19 
20 namespace mlir {
21 namespace detail {
22 
24  unsigned numDims;
25  unsigned numSymbols;
26 
30 
32 };
33 
34 } // end namespace detail
35 } // end namespace mlir
36 
37 #endif // AFFINEMAPDETAIL_H_
Definition: InferTypeOpInterface.cpp:20
ArrayRef< AffineExpr > results
Definition: AffineMapDetail.h:29
Definition: LLVM.h:37
MLIRContext * context
Definition: AffineMapDetail.h:31
unsigned numDims
Definition: AffineMapDetail.h:24
Definition: MLIRContext.h:34
Definition: AffineMapDetail.h:23
unsigned numSymbols
Definition: AffineMapDetail.h:25