Vladimir Panteleev
Vladimir Panteleev
> UML does not have SMP support It does from what I can see, and in theory it should be possible to simulate SMP using host threads. > and I...
Interleave and [use the minimum measurement](https://youtu.be/vrfYLlR8X8k?t=914). :)
> I think my example falls into the same category as "networking" in the talk. The effects of file io matter to the performance. If you are doing I/O on...
If you would like to include measuring the performance of the filesystem implementation as part of your benchmark, I would suggest to use a clean filesystem backed by RAM, fresh...
Even when the mmap is of a RAM-backed file? That's interesting, maybe you could dump `/proc//stack` to see why it's taking so long when it's taking over a millisecond. Same...
[Here is a trace I did back in April for webtorrent-cli](https://github.com/webtorrent/webtorrent/files/1050627/output.txt). The process becomes so CPU-bound, that the player can't even request more chunks quickly enough for continuous playback, despite...
> This patch is motivated by the need to have a much faster alternative to the slow MD5 or SHAx cryptographic digests. XXHash by itself is no cryptographic hash, but...
True, but is "slightly faster" a sufficient reason to add it and commit to supporting it in the language's standard library? New hash functions are being invented constantly, so it...
> But the are xxhash modules for go, node, rust and python. Therefore I would like to have it with D as well. Alright, but why not publish this as...