llvm with tablegen backend for capstone disassembler
Go to file
Jakub Kuderski e0aac8c88d
[mlir][gpu] Align reduction operations with vector combining kinds (#73423)
The motivation for this change is explained in
https://github.com/llvm/llvm-project/issues/72354.

Before this change, we could not tell between signed/unsigned
minimum/maximum and NaN treatment for floating point values.

The mapping of old reduction operations to the new ones is as follows:
*  `min` --> `minsi` for ints, `minf` for floats
*  `max` --> `maxsi` for ints, `maxf` for floats

New reduction kinds not represented in the old enum: `minui`, `maxui`,
`minimumf`, `maximumf`.

As a next step, I would like to have a common definition of combining
kinds used by the `vector` and `gpu` dialects. Separately, the GPU to
SPIR-V lowering does not yet properly handle zero and NaN values -- the
behavior of floating point min/max group reductions is not specified by
the SPIR-V spec, see https://github.com/llvm/llvm-project/issues/73459. 

Issue: https://github.com/llvm/llvm-project/issues/72354
2023-11-27 11:19:20 -05:00
.ci [CI] Add check-mlir-python to MLIR pre-merge checks (#72847) 2023-11-25 09:55:32 +00:00
.github [CI] Skip libcxx in non-llvm repo (#73282) 2023-11-24 09:44:49 -05:00
bolt [BOLT] Reset output addresses for deleted blocks (#73429) 2023-11-25 23:23:47 -08:00
clang ms inline asm: Fix {call,jmp} fptr (#73207) 2023-11-27 07:27:50 -08:00
clang-tools-extra [clangtidy] Allow safe suspensions in coroutine-hostile-raii check (#72954) 2023-11-27 16:21:07 +01:00
cmake [CMake] Switch the CMP0091 policy (MSVC_RUNTIME_LIBRARY) to the new behaviour 2023-07-17 09:59:05 +03:00
compiler-rt [compiler-rt] Fix the HWCAP2_EBF16 and HWCAP2_SVE_EBF16 macro value (#70905) 2023-11-23 10:17:55 +08:00
cross-project-tests [Dexter] Associate parser errors with correct file (#66765) 2023-09-19 14:16:17 +01:00
flang [Flang][OpenMP] Fix issue with empty critical or critical without surrounding context (#71944) 2023-11-27 15:56:39 +00:00
libc [libc][NFC] Decouple FP properties from C++ types (#73517) 2023-11-27 17:05:49 +01:00
libclc [LIBCLC] Teach prepare-builtins how to handle text based IR (#66993) 2023-10-03 14:28:01 +02:00
libcxx [libc++] Remove experimental pmr headers now shipped in mainline (#73172) 2023-11-27 10:54:35 -05:00
libcxxabi [libcxxabi][test][NFC] Turn off clang-format for demangler test-case array (#73503) 2023-11-27 09:24:37 -05:00
libunwind [runtimes][NFC] Remove trailing whitespace 2023-11-17 16:50:49 -05:00
lld [lld][LoongArch] Add a another corner testcase for elf::getLoongArchPageDelta 2023-11-25 20:38:45 +08:00
lldb [lldb][AArch64][Linux] Correct name of FPCR field 2023-11-27 09:10:56 +00:00
llvm [InstCombine] Remove over-generalization from computeKnownBitsFromCmp() (#72637) 2023-11-27 16:50:05 +01:00
llvm-libgcc [llvm-libgcc][CMake] Refactor llvm-libgcc (#65455) 2023-09-18 22:56:03 -07:00
mlir [mlir][gpu] Align reduction operations with vector combining kinds (#73423) 2023-11-27 11:19:20 -05:00
openmp [OpenMP] Fix missing CMake function in runtimes build 2023-11-27 09:23:15 -06:00
polly [NFC] Remove Type::getInt8PtrTy (#71029) 2023-11-07 17:26:26 +01:00
pstl Clear release notes for 18.x 2023-07-25 13:58:49 +02:00
runtimes [llvm] Disable HandleLLVMOptions in runtimes mode (#73031) 2023-11-27 08:12:32 -06:00
third-party [gtest] Disable new posix::FOpen Windows implementation for now 2023-09-28 21:11:09 +02:00
utils Revert "[Bazel] Fix llvm-exegesis build post 12b0ab2" 2023-11-27 15:53:48 +01:00
.arcconfig
.arclint
.clang-format
.clang-tidy Add -misc-use-anonymous-namespace to .clang-tidy 2023-05-06 02:33:20 +03:00
.git-blame-ignore-revs Revert "[mlir][spirv] Add D155747 to .git-blame-ignore-revs" 2023-07-21 10:59:16 -04:00
.gitignore Revert accidental .gitignore change from 9b7763821a 2023-09-07 22:42:05 -07:00
.mailmap [mailmap] Add my entry 2023-11-20 00:16:53 +00:00
CODE_OF_CONDUCT.md [llvm] Add CODE_OF_CONDUCT.md (#65816) 2023-09-09 10:55:31 -07:00
CONTRIBUTING.md Update CONTRIBUTING.md to remove the not about not accepting PR 2023-09-10 15:21:06 -07:00
LICENSE.TXT
README.md Add Scorecard Action (#69933) 2023-11-01 11:08:26 -07:00
SECURITY.md

The LLVM Compiler Infrastructure

OpenSSF Scorecard

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.

Getting the Source Code and Building LLVM

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.

Getting in touch

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.