Skip to content

Commit

Permalink
re-enable acceleration of Vector512<long>.op_Multiply (#111832)
Browse files Browse the repository at this point in the history
  • Loading branch information
saucecontrol authored Jan 26, 2025
1 parent a40f92e commit d5c8265
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/coreclr/jit/hwintrinsicxarch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3363,7 +3363,7 @@ GenTree* Compiler::impSpecialIntrinsic(NamedIntrinsic intrinsic,
{
// Emulate NI_AVX512DQ_VL_MultiplyLow with SSE41 for SIMD16
}
else
else if (simdSize != 64)
{
// Software fallback
break;
Expand Down Expand Up @@ -3421,7 +3421,7 @@ GenTree* Compiler::impSpecialIntrinsic(NamedIntrinsic intrinsic,
{
// Emulate NI_AVX512DQ_VL_MultiplyLow with SSE41 for SIMD16
}
else
else if (simdSize != 64)
{
// Software fallback
break;
Expand Down

0 comments on commit d5c8265

Please sign in to comment.