@ -77,7 +77,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components
}
private void Transpose_Avx()
private void TransposeInplace_Avx()
{
// https://stackoverflow.com/questions/25622745/transpose-an-8x8-float-using-avx-avx2/25627536#25627536
Vector256<float> r0 = Avx.InsertVector128(
@ -617,7 +617,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components
#if SUPPORTS_RUNTIME_INTRINSICS
if (Avx.IsSupported)
this.Transpose_Avx();
this.TransposeInplace_Avx();
else
#endif