-
Notifications
You must be signed in to change notification settings - Fork 5.2k
ARM64-SVE: Alphabetically order the SVE API (#104834) #105760
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
Conversation
|
Note regarding the |
|
Note regarding the |
|
Tagging subscribers to this area: @dotnet/area-system-runtime-intrinsics |
|
@dotnet/arm64-contrib @kunalspathak |
| /// svfloat32_t svabs[_f32]_x(svbool_t pg, svfloat32_t op) | ||
| /// svfloat32_t svabs[_f32]_z(svbool_t pg, svfloat32_t op) | ||
| /// </summary> | ||
| public static unsafe Vector<float> Abs(Vector<float> value) { throw new PlatformNotSupportedException(); } |
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.
Is this order using .NET names for types (i.e. Single instead of float)? I'm guessing that's why Vector<float> Abs is at the end?
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.
This is using the order specified here.
So, yes the names instead of the types.
amanasifkhalid
left a comment
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.
Did a quick skim, and this LGTM. Thanks!
Generally there are two issues:
Does not change any APIs or contents within summary blocks.
Also adds some missing section comments.