We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4c44cc commit 2dc6c93Copy full SHA for 2dc6c93
src/BenchmarkDotNet/Toolchains/NativeAot/Generator.cs
@@ -238,6 +238,7 @@ private static IEnumerable<string> GetCurrentProcessInstructionSets(Platform pla
238
if (HardwareIntrinsics.IsX86PclmulqdqSupported) yield return "pclmul";
239
if (HardwareIntrinsics.IsX86PopcntSupported) yield return "popcnt";
240
if (HardwareIntrinsics.IsX86AvxVnniSupported) yield return "avxvnni";
241
+ if (HardwareIntrinsics.IsX86SerializeSupported) yield return "serialize";
242
break;
243
case Platform.Arm64:
244
if (HardwareIntrinsics.IsArmBaseSupported) yield return "base";
0 commit comments