Explore >> Select a destination


You are here

www.evanjones.ca
| | kernelpodcast.org
18.4 parsecs away

Travel
| | Season 2 - Episode 4 - 2023/04/24 Summary The latest stable kernel is Linux 6.3, released by Linus Torvalds on Sunday, April 23rd, 2023. The latest mainline (development) kernel is 6.3. The Linux 6.4 merge window is open. Linux 6.3 Linus Torvalds announced the release of Linux 6.3, noting, Its been a calm release this
| | brendangregg.com
15.9 parsecs away

Travel
| | TensorFlow Library Performance
| | danlark.org
10.0 parsecs away

Travel
| | TCMalloc team recently published a paper on OSDI'21 about Google's allocator internals, specifically on how huge pages are used. You can read the full paper here. TL;DR. Google saved 2.4% of the memory fleet and increased the QPS performance of the most critical applications by 7.7%, an impressive result worth noting. Code is open sourced,...
| | sookocheff.com
86.5 parsecs away

Travel
| Writing correct programs is hard; writing correct concurrent programs is harder. Java Concurrency in Practice. So, why bother with concurrency? A number of reasons: Concurrency provides a natural method for composing asynchronous code. Concurrency allows your program to avoid blocking user operations. Concurrency provides one of the easiest ways take advantage of multi core systems. As processor counts increase, exploiting concurrency will be an even more important facet of high performance systems.