- Jun 15, 2020
-
-
Hanhan Wang authored
Differential Revision: https://reviews.llvm.org/D81858
-
Mehdi Amini authored
This reverts commit 32c757e4. Broke the build bot: ******************** TEST 'MLIR :: Examples/standalone/test.toy' FAILED ******************** [...] /tmp/ci-KIMiRFcVZt/lib/libMLIRLinalgToLLVM.a(LinalgToLLVM.cpp.o): In function `(anonymous namespace)::ConvertLinalgToLLVMPass::runOnOperation()': LinalgToLLVM.cpp:(.text._ZN12_GLOBAL__N_123ConvertLinalgToLLVMPass14runOnOperationEv+0x100): undefined reference to `mlir::populateExpandTanhPattern(mlir::OwningRewritePatternList&, mlir::MLIRContext*)'
-
Hanhan Wang authored
Summary: Add a pattern for expanding tanh op into exp form. A `tanh` is expanded into: 1) 1-exp^{-2x} / 1+exp^{-2x}, if x => 0 2) exp^{2x}-1 / exp^{2x}+1 , if x < 0. Differential Revision: https://reviews.llvm.org/D81618
-
Alex Zinenko authored
Similarly to `scf::ForOp`, introduce additional `function_ref` arguments to `AffineForOp::build` that can be used to populate the body of the loop during its construction. Provide compatibility functions for constructing affine loop nests using `edsc::ScopedContext`. `edsc::AffineLoopNestBuilder` and reletad functionality is now deprecated and will be removed soon, users are expected to switch to `affineLoopNestBuilder` that provides similar functionality with a simpler OpBuilder-based implementation. Differential Revision: https://reviews.llvm.org/D81754
-
Alex Zinenko authored
In the affine symbol and dimension check, the code currently assumes `getAffineScope` and its users `isValidDim` and `isValidSymbol` are only called on values defined in regions that have a parent Op with `AffineScope` trait. This is not necessarily the case, and these functions may be called on valid IR that does not satisfy this assumption. Return `nullptr` from `getAffineScope` if there is no parent op with `AffineScope` trait. Treat this case conservatively in `isValidSymbol` by only accepting as symbols the values that are guaranteed to be symbols (constants, and certain operations). No modifications are necessary to `isValidDim` that delegates most of the work to `isValidDim`. Differential Revision: https://reviews.llvm.org/D81753
-
Jacques Pienaar authored
Use ::Adaptor alias instead uniformly. Makes the naming more consistent as adaptor can refer to attributes now too. Differential Revision: https://reviews.llvm.org/D81789
-
Frederik Gossen authored
Apply post-commit suggestions (see https://reviews.llvm.org/D81551). Add documentation, simplify, and fix test cases. Differential Revision: https://reviews.llvm.org/D81722
-
- Jun 12, 2020
-
-
HazemAbdelhafez authored
Modify structure type in SPIR-V dialect to support: 1) Multiple decorations per structure member 2) Key-value based decorations (e.g., MatrixStride) This commit kept the Offset decoration separate from members' decorations container for easier implementation and logical clarity. As such, all references to Structure layoutinfo are now offsetinfo, and any member layout defining decoration (e.g., RowMajor for Matrix) will be add to the members' decorations container along with its value if any. Differential Revision: https://reviews.llvm.org/D81426
-
Mehdi Amini authored
This reverts commit 5d74df5b. This broke the MSVC build: <bits/stdint-uintn.h> isn't available on Windows
-
HazemAbdelhafez authored
Modify structure type in SPIR-V dialect to support: 1) Multiple decorations per structure member 2) Key-value based decorations (e.g., MatrixStride) This commit kept the Offset decoration separate from members' decorations container for easier implementation and logical clarity. As such, all references to Structure layoutinfo are now offsetinfo, and any member layout defining decoration (e.g., RowMajor for Matrix) will be add to the members' decorations container along with its value if any. Differential Revision: https://reviews.llvm.org/D81426
-
- Jun 11, 2020
-
-
Alexander Belyaev authored
Summary: * extra ';' in the following files: mlir/lib/Dialect/Linalg/Transforms/Transforms.cpp mlir/lib/Dialect/Shape/IR/Shape.cpp * base class ‘mlir::ConvertVectorToSCFBase<ConvertVectorToSCFPass>’ should be explicitly initialized in the copy constructor [-Wextra] in mlir/lib/Conversion/VectorToSCF/VectorToSCF.cpp * warning: ‘bool Expression::operator==(const Expression&) const’ defined but not used [-Wunused-function] in mlir/tools/mlir-linalg-ods-gen/mlir-linalg-ods-gen.cpp Differential Revision: https://reviews.llvm.org/D81673
-
Alexander Belyaev authored
-
Alexander Belyaev authored
Differential Revision: https://reviews.llvm.org/D81640
-
Mehdi Amini authored
This reverts commit 4b7aa6c8. This broke gcc builds.
-
Rahul Joshi authored
Summary: - Print function name when ReturnOp verification fails - This helps easily finding the invalid ReturnOp in an IR dump. Differential Revision: https://reviews.llvm.org/D81513
-
Rob Suderman authored
Summary: We now support index casting for tensor<index> to tensor<int>. This better supports compatibility with the Shape dialect. Differential Revision: https://reviews.llvm.org/D81611
-
HazemAbdelhafez authored
Modify structure type in SPIR-V dialect to support: 1) Multiple decorations per structure member 2) Key-value based decorations (e.g., MatrixStride) This commit kept the Offset decoration separate from members' decorations container for easier implementation and logical clarity. As such, all references to Structure layoutinfo are now offsetinfo, and any member layout defining decoration (e.g., RowMajor for Matrix) will be add to the members' decorations container along with its value if any. Differential Revision: https://reviews.llvm.org/D81426
-
- Jun 10, 2020
-
-
Frederik Gossen authored
Allow for dynamic indices in the `dim` operation. Rather than an attribute, the index is now an operand of type `index`. This allows to apply the operation to dynamically ranked tensors. The correct lowering of dynamic indices remains to be implemented. Differential Revision: https://reviews.llvm.org/D81551
-
Frederik Gossen authored
The operation `get_extent` now accepts the dimension as an operand and is no longer limited to constant dimensions. A helper function facilitates the common constant use case. Differential Revision: https://reviews.llvm.org/D81248
-
Stephen Neuendorffer authored
This is useful for manipulating the standard dialect from transformations outside of the standard dialect. Differential Revision: https://reviews.llvm.org/D80609
-
aartbik authored
Summary: Even though this operation is intended for 1d/2d conversions currently, leaving a semantic hole in the lowering prohibits proper testing of this operation. This CL adds a straightforward reference implementation for the missing cases. Reviewers: nicolasvasilache, mehdi_amini, ftynse, reidtatge Reviewed By: reidtatge Subscribers: mehdi_amini, rriddle, jpienaar, shauheen, antiagainst, nicolasvasilache, arpith-jacob, mgester, lucyrfox, liufengdb, stephenneuendorffer, Joonsoo, grosul1, frgossen, Kayjukh, jurahul, msifontes Tags: #mlir Differential Revision: https://reviews.llvm.org/D81503
-
- Jun 09, 2020
-
-
msifontes authored
Implemented a verification to ensure that the shape.assuming_all operation always has at least one operand.
-
- Jun 08, 2020
-
-
Wen-Heng (Jack) Chung authored
Fix logic error in D79508. The old logic would make the first check in `GPUFuncOp::verifyBody` always pass.
-
Frederik Gossen authored
The SSA values created with `shape.const_size` are now named depending on the value. A constant size of 3, e.g., is now automatically named `%c3`. Differential Revision: https://reviews.llvm.org/D81249
-
Alexander Belyaev authored
This reverts commit a25f5cd7. Now the build with `-DBUILD_SHARED_LIBS=ON` is fixed.
-
Tres Popp authored
Now targets are only built with files in the same directory. Differential Revision: https://reviews.llvm.org/D81328
-
Ehsan Toosi authored
This parameter gives the developers the freedom to choose their desired function signature conversion for preparing their functions for buffer placement. It is introduced for BufferAssignmentFuncOpConverter, and also for BufferAssignmentReturnOpConverter, and BufferAssignmentCallOpConverter to adapt the return and call operations with the selected function signature conversion. If the parameter is set, buffer placement won't also deallocate the returned buffers. Differential Revision: https://reviews.llvm.org/D81137
-
- Jun 07, 2020
-
-
Mehdi Amini authored
This reverts commit e80617df. This broke the build with `-DBUILD_SHARED_LIBS=ON`
-
Alexander Belyaev authored
Differential Revision: https://reviews.llvm.org/D81279
-
Alexander Belyaev authored
Differential Revision: https://reviews.llvm.org/D81262
-
- Jun 06, 2020
-
- Jun 05, 2020
-
-
Nicolas Vasilache authored
Summary: This revision adds a common folding pattern that starts appearing on vector_transfer ops. Differential Revision: https://reviews.llvm.org/D81281
-
Nicolas Vasilache authored
-
HazemAbdelhafez authored
Add support for flat, location, and noperspective decorations in the serializer and deserializer to be able to process basic shader files for graphics applications. Differential Revision: https://reviews.llvm.org/D80837
-
Nicolas Vasilache authored
-
Nicolas Vasilache authored
This revision adds a helper function to hoist vector.transfer_read / vector.transfer_write pairs out of immediately enclosing scf::ForOp iteratively, if the following conditions are true: 1. The 2 ops access the same memref with the same indices. 2. All operands are invariant under the enclosing scf::ForOp. 3. No uses of the memref either dominate the transfer_read or are dominated by the transfer_write (i.e. no aliasing between the write and the read across the loop) To improve hoisting opportunities, call the `moveLoopInvariantCode` helper function on the candidate loop above which to hoist. Hoisting the transfers results in scf::ForOp yielding the value that originally transited through memory. This revision additionally exposes `moveLoopInvariantCode` as a helper in LoopUtils.h and updates SliceAnalysis to support return scf::For values and allow hoisting across multiple scf::ForOps. Differential Revision: https://reviews.llvm.org/D81199
-
Alexander Belyaev authored
Differential Revision: https://reviews.llvm.org/D81186
-