-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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: Alphabetically order the SVE API (#104834) #105760
Conversation
Note regarding the
|
Note regarding the
|
Tagging subscribers to this area: @dotnet/area-system-runtime-intrinsics |
@dotnet/arm64-contrib @kunalspathak |
/// svint8_t svabs[_s8]_z(svbool_t pg, svint8_t op) | ||
/// </summary> | ||
public static unsafe Vector<sbyte> Abs(Vector<sbyte> value) { throw new PlatformNotSupportedException(); } | ||
|
||
/// <summary> | ||
/// svfloat32_t svabs[_f32]_m(svfloat32_t inactive, svbool_t pg, svfloat32_t op) | ||
/// 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.
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.