-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
[Mono] Add SIMD intrinsic for Vector64/128 comparisons #65128
[Mono] Add SIMD intrinsic for Vector64/128 comparisons #65128
Conversation
…intrinsics-eq-gt-geq-lt-leq
Failing tests are related to #65818 |
case SN_Equals: | ||
case SN_EqualsAll: | ||
case SN_EqualsAny: { | ||
MonoType *arg_type = get_vector_t_elem_type (fsig->params [0]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should start to add comprehensive vector element type checks for each case. (Both input args and the return.) I have a PR up to refactor the code of type checks for this function. (#65486) You could merge this PR like this and fix it with your next PR.
case SN_GreaterThanOrEqual: | ||
case SN_LessThan: | ||
case SN_LessThanOrEqual: { | ||
MonoType *arg_type = get_vector_t_elem_type (fsig->params [0]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ditto
This PR contributes to #64072
==
and!=