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

Arm64/Sve: Implement SVE Math *Multiply* APIs #102007

Merged
merged 30 commits into from
May 11, 2024

Commits on May 7, 2024

  1. Add *Fused* APIs

    kunalspathak committed May 7, 2024
    Configuration menu
    Copy the full SHA
    97373ca View commit details
    Browse the repository at this point in the history
  2. fix an assert in morph

    kunalspathak committed May 7, 2024
    Configuration menu
    Copy the full SHA
    4e14098 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3fb9dea View commit details
    Browse the repository at this point in the history

Commits on May 8, 2024

  1. Add test cases

    kunalspathak committed May 8, 2024
    Configuration menu
    Copy the full SHA
    600391a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    67e4d4d View commit details
    Browse the repository at this point in the history
  3. jit format

    kunalspathak committed May 8, 2024
    Configuration menu
    Copy the full SHA
    54899b2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e4a53ae View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bfad7b7 View commit details
    Browse the repository at this point in the history
  6. Add test cases

    kunalspathak committed May 8, 2024
    Configuration menu
    Copy the full SHA
    100f289 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2024

  1. Configuration menu
    Copy the full SHA
    8ac1840 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9eb195e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c182d0d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    62ea159 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    28a49cb View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    722dd55 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2024

  1. Configuration menu
    Copy the full SHA
    229f78f View commit details
    Browse the repository at this point in the history
  2. jit format

    kunalspathak committed May 10, 2024
    Configuration menu
    Copy the full SHA
    a21439f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6a01ca4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    318cbf3 View commit details
    Browse the repository at this point in the history
  5. fix a bug where *Indexed API used with ConditionalSelect were failing

    ` Sve.ConditionalSelect(op1, Sve.MultiplyBySelectedScalar(op1, op2, 0), op3);` was failing
    because we were trying to check if `MultiplyBySelectedScalar` is contained and we hit the assert
    because it is not containable. Added the check.
    kunalspathak committed May 10, 2024
    Configuration menu
    Copy the full SHA
    e3fc830 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1ca5539 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    eb41e1d View commit details
    Browse the repository at this point in the history
  8. Added tests for MultiplyBySelectedScalar

    Also updated *SelectedScalar* tests for ConditionalSelect
    kunalspathak committed May 10, 2024
    Configuration menu
    Copy the full SHA
    7874f25 View commit details
    Browse the repository at this point in the history
  9. fixes to test cases

    kunalspathak committed May 10, 2024
    Configuration menu
    Copy the full SHA
    f756afb View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    2904934 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    53d29a0 View commit details
    Browse the repository at this point in the history
  12. jit format

    kunalspathak committed May 10, 2024
    Configuration menu
    Copy the full SHA
    98ac0ce View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    0f89e10 View commit details
    Browse the repository at this point in the history
  14. Handle FMA properly

    kunalspathak committed May 10, 2024
    Configuration menu
    Copy the full SHA
    8e928ec View commit details
    Browse the repository at this point in the history
  15. added assert

    kunalspathak committed May 10, 2024
    Configuration menu
    Copy the full SHA
    c713d31 View commit details
    Browse the repository at this point in the history