| commit | df9ed9cf52f82aed023adc968ca2a0e7f7cccc69 | [log] [tgz] |
|---|---|---|
| author | srcarroll <50210727+srcarroll@users.noreply.github.com> | Thu Mar 21 00:25:07 2024 -0500 |
| committer | GitHub <noreply@github.com> | Thu Mar 21 00:25:07 2024 -0500 |
| tree | d8126007d6ca50faaeedc7c97dca92c918aaa44e | |
| parent | 733640d29ede70585e0e3e1dcc47b935981f791e [diff] |
[mlir][transform] Fix failure in flattening already flattened linalg ops (#86037) The previous implementation was doing an early successful return on `rank <= 1` without adding the original op to transform results. This resulted in errors about number of returns. This patch fixes this by adding the original op to results. Additionally, we first check if op is elementwise and return a slienceable failure early if not.
Welcome to the LLVM project!
This repository contains the source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and run-time environments.
The LLVM project has multiple components. The core of the project is itself called “LLVM”. This contains all of the tools, libraries, and header files needed to process intermediate representations and convert them into object files. Tools include an assembler, disassembler, bitcode analyzer, and bitcode optimizer.
C-like languages use the Clang frontend. This component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode -- and from there into object files, using LLVM.
Other components include: the libc++ C++ standard library, the LLD linker, and more.
Consult the Getting Started with LLVM page for information on building and running LLVM.
For information on how to contribute to the LLVM project, please take a look at the Contributing to LLVM guide.
Join the LLVM Discourse forums, Discord chat, LLVM Office Hours or Regular sync-ups.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.