Skip to content

Fix XML doc for Avx.Floor #88552

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

Merged
merged 1 commit into from
Jul 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -471,12 +471,12 @@ internal X64() { }
public static Vector128<double> ExtractVector128(Vector256<double> value, [ConstantExpected] byte index) => ExtractVector128(value, index);

/// <summary>
/// __m256 _mm256_ceil_ps (__m128 a)
/// __m256 _mm256_floor_ps (__m256 a)
/// VROUNDPS ymm1, ymm2/m256, imm8(9)
/// </summary>
public static Vector256<float> Floor(Vector256<float> value) => Floor(value);
/// <summary>
/// __m256d _mm256_ceil_pd (__m128d a)
/// __m256d _mm256_floor_pd (__m256d a)
/// VROUNDPD ymm1, ymm2/m256, imm8(9)
/// </summary>
public static Vector256<double> Floor(Vector256<double> value) => Floor(value);
Expand Down