Skip to content
  1. Jun 15, 2020
  2. Jun 13, 2020
    • George Mitenkov's avatar
      [MLIR][SPIRVToLLVM] Implemented shift conversion pattern · cf2b4d5c
      George Mitenkov authored
      This patch has shift ops conversion implementation. In SPIR-V dialect,
      `Shift` and `Base` may have different bit width. On the contrary,
      in LLVM dialect both `Base` and `Shift` have to be of the same bit width.
      This leads to the following cases:
      - if `Base` has the same bit width as `Shift`, the conversion is
        straightforward.
      - if `Base` has a greater bit width than `Shift`, shift is sign/zero
        extended first. Then the extended value is passed to the shift.
      - otherwise the conversion is considered to be illegal.
      
      Differential Revision: https://reviews.llvm.org/D81546
      cf2b4d5c
  3. Jun 12, 2020
  4. Jun 11, 2020
  5. Jun 10, 2020
  6. Jun 09, 2020
Loading