Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 5.6k
arm64: Clean up SVE embedded masked codegen#127164
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
73b01284cddda042b67e6cf72018d144b80c11e1219dda2b4235dd4c3b0e5a9f4f9c8fcd44fafc981363File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -313,7 +313,9 @@ namespace {Namespace} | ||
| [method: MethodImpl(MethodImplOptions.AggressiveInlining)] | ||
| private void ConditionalSelectScenario_TrueValue(Vector<{RetBaseType}> mask, Vector<{Op1BaseType}> op1, Vector<{Op2BaseType}> op2, Vector<{RetBaseType}> falseOp) | ||
| { | ||
| var result = Sve.ConditionalSelect(mask, {Isa}.{Method}(op1, op2), falseOp); | ||
| var result = (falseOp == Vector<{RetBaseType}>.Zero) ? | ||
| Sve.ConditionalSelect(mask, {Isa}.{Method}(op1, op2), Vector<{RetBaseType}>.Zero) : | ||
dhartglassMSFT marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| Sve.ConditionalSelect(mask, {Isa}.{Method}(op1, op2), falseOp); | ||
| ValidateConditionalSelectResult(mask, op1, op2, falseOp, result); | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.