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.
Context #120352 (comment)
The following code-snippet when published with R2R, e.g.:
dotnet publish -f net10.0 -r win-x64 --sc -p:PublishReadyToRun=true
using System.Runtime.Intrinsics; Test(); static ushort[] Test() { ushort[] numbers = new ushort[8]; Vector128<ushort>.Zero.CopyTo(numbers); return numbers; }
... has to JIT compile Test() with Tier0, although, it clearly is expected to be prejitted.
Test()
JitDump
Context #120352 (comment)
The following code-snippet when published with R2R, e.g.:
... has to JIT compile
Test()with Tier0, although, it clearly is expected to be prejitted.JitDump