neon-sunset
neon-sunset
why does arm64 package still use amd64 version of mono?
Actually, I got the ARM64 version working by simply downloading standalone omnisharp-roslyn from https://github.com/OmniSharp/omnisharp-roslyn/releases/tag/v1.38.0 and specifying its path for the VS Code extension instead of `latest`. It is also advantageous...
You have to add an executable attribute to the file to make macOS happy: `sudo chmod +x /Users/lisa/Downloads/omnisharp-osx-arm64-net6.0/OmniSharp.dll` @zhen8838
@brantburnett @arnoldsi-vii it appears there is https://www.nuget.org/packages/System.IO.Hashing/ now. It doesn't seem to use any kind of loop unrolling in its implementation however and I haven't yet tested its performance vs...
@brantburnett Unfortunately, JIT does not do any loop unrolling or auto-vectorization as of today. It can do loop cloning for independent operations but this doesn't seem to be applicable in...
Core groups within performance cluster on M1 chips (sorry, there's no official terminology so it's confusing) work mostly (as far as I understand) as power/clock domains, while they don't share...
> Hi @neon-sunset, is this an experimental PR, we could mark it as a draft. Looks like you are still running some perf tests to check what the impact is...
To be honest, it doesn't seem like a frequent case except for enums, in which case it would be reasonable to assume that they would get treated as their underlying...
If you're okay with this change, I'll go ahead with impl.
Yes, that's what I was thinking - coalesce implementations for fitting keys into int-sized and long-sized and then let JIT optimize out checks like `entryKey == providedKey || (!s_isPrimitive &&...