Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for llvm.vector.reduce.* intrinsics #2198

Merged
merged 9 commits into from
Nov 14, 2023

Commits on Nov 10, 2023

  1. Support for llvm.vector.reduce.* intrinsics

    A set of llvm.vector.reduce.* intrinsics doesn't have straight forward
    operation equivalent on the SPIRV side. The easiest solution to this
    problem is to use scalar operation on each pair of vector elements
    and repeat until there is only one value.
    bwlodarcz committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    96a21ed View commit details
    Browse the repository at this point in the history
  2. Finished add test

    bwlodarcz committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    686feea View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3467f9d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c668954 View commit details
    Browse the repository at this point in the history
  5. Added min and max

    bwlodarcz committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    555c006 View commit details
    Browse the repository at this point in the history
  6. Added fadd

    bwlodarcz committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    aec34ac View commit details
    Browse the repository at this point in the history
  7. Added FMul

    bwlodarcz committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    4e030ae View commit details
    Browse the repository at this point in the history
  8. Added fmax* and fmin*

    bwlodarcz committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    b685987 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2023

  1. Renames

    bwlodarcz committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    908f32a View commit details
    Browse the repository at this point in the history