Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Ensure the AVX512F_VL variant is picked for simdSize=16/32
  • Loading branch information
tannergooding committed Apr 25, 2023
commit d7de182de2c4350905e2fd69668ad4db24afc7bd
4 changes: 2 additions & 2 deletions src/coreclr/jit/gentree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22764,7 +22764,7 @@ GenTree* Compiler::gtNewSimdNarrowNode(
}
else
{
intrinsicId = NI_AVX512F_ConvertToVector128Int16;
intrinsicId = NI_AVX512F_VL_ConvertToVector128Int16;
}

opBaseJitType = CORINFO_TYPE_INT;
Expand All @@ -22779,7 +22779,7 @@ GenTree* Compiler::gtNewSimdNarrowNode(
}
else
{
intrinsicId = NI_AVX512F_ConvertToVector128UInt16;
intrinsicId = NI_AVX512F_VL_ConvertToVector128UInt16;
}

opBaseJitType = CORINFO_TYPE_UINT;
Expand Down