Counting cycles and instructions on the Apple M1 processor
https://lemire.me/blog/2021/03/24/counting-cycles-and-instructions-on-the-apple-m1-processor/ [lemire.me]
2021-03-25 02:12
tags:
cpu
mac
perf
programming
Recently, one of the readers of my blog (Duc Tri Nguyen) showed me how, inspired by code from Dougall Johnson. Dougall has been doing interesting research on Apple’s processors. As far as I can tell, it is entirely undocumented and could blow up your computer. Thankfully, to access the performance counters, you need administrative access (wheel group). In practice, it means that you could start your instrumented program in a shell using sudo so that your program has, itself, administrative privileges.
To illustrate the approach, I have posted a full C++ project which builds an instrumented benchmark. You need administrative access and an Apple M1 system. I assume you have installed the complete developer kit with command-line utilities provided by Apple.
source: HN
Xor Filters: Faster and Smaller Than Bloom Filters
https://lemire.me/blog/2019/12/19/xor-filters-faster-and-smaller-than-bloom-filters/ [lemire.me]
2019-12-20 23:46
tags:
compsci
hash
paper
programming
Among other alternatives, Fan et al. introduced Cuckoo filters which use less space and are faster than Bloom filters. While implementing a Bloom filter is a relatively simple exercise, Cuckoo filters require a bit more engineering.
Could we do even better while limiting the code to something you can hold in your head?
It turns out that you can with xor filters. We just published a paper called Xor Filters: Faster and Smaller Than Bloom and Cuckoo Filters that will appear in the Journal of Experimental Algorithmics.
source: L
Mispredicted branches can multiply your running times
https://lemire.me/blog/2019/10/15/mispredicted-branches-can-multiply-your-running-times/ [lemire.me]
2019-10-16 00:27
tags:
c
perf
programming
Could the compiler have solved this problem on its own? In general, the answer is negative. Sometimes compilers have some options to avoid branches entirely even if there is an if-then clause in the original code. For example, branches can sometimes be replaced by “conditional moves” or other arithmetic tricks. However, there are tricks that compilers cannot use safely.
source: L
A fast alternative to the modulo reduction
https://lemire.me/blog/2016/06/27/a-fast-alternative-to-the-modulo-reduction/ [lemire.me]
2019-10-06 20:08
tags:
hash
math
perf
programming
Assume that x and N are 32-bit integers, consider the 64-bit product x * N. You have that (x * N) div 2^32 is in the range, and it is a fair map.
source: HN
Faster remainders when the divisor is a constant: beating compilers and libdivide
https://lemire.me/blog/2019/02/08/faster-remainders-when-the-divisor-is-a-constant-beating-compilers-and-libdivide/ [lemire.me]
2019-02-08 22:39
tags:
c
library
math
paper
perf
programming
Not all instructions on modern processors cost the same. Additions and subtractions are cheaper than multiplications which are themselves cheaper than divisions. For this reason, compilers frequently replace division instructions by multiplications. Roughly speaking, it works in this manner. Suppose that you want to divide a variable n by a constant d. You have that n/d = n * (2N/d) / (2N). The division by a power of two (/ (2N)) can be implemented as a right shift if we are working with unsigned integers, which compiles to single instruction: that is possible because the underlying hardware uses a base 2. Thus if 2N/d has been precomputed, you can compute the division n/d as a multiplication and a shift. Of course, if d is not a power of two, 2N/d cannot be represented as an integer. Yet for N large enough, we can approximate 2N/d by an integer and have the exact computation of the remainder for all possible n within a range. I believe that all optimizing C/C++ compilers know how to pull this trick and it is generally beneficial irrespective of the processor’s architecture.
Can we do better? It turns out that in some instance, we can beat both the compilers and a library like libdivide.
Paper: https://arxiv.org/abs/1902.01961
source: HN
Don’t make it appear like you are reading your own recent writes
https://lemire.me/blog/2018/01/04/dont-make-it-appear-like-you-are-reading-your-own-recent-writes/ [lemire.me]
2018-01-05 03:51
tags:
c
cpu
java
perf
programming
On apparent false aliasing with vector instructions.
source: L
Quantifying the performance benefits of Go 1.9 on bitsets
https://lemire.me/blog/2017/08/25/quantifying-the-performance-benefits-of-go-1-9-on-bitsets/ [lemire.me]
2017-08-27 23:24
tags:
benchmark
go
perf
programming
Go, the programming language initiated at Google, has recently shipped its version 1.9. One big change is the introduction of the math/bits package which offers hardware-accelerated functions to manipulate data.
source: R
How many floating-point numbers are in the interval [0,1]?
http://lemire.me/blog/2017/02/28/how-many-floating-point-numbers-are-in-the-interval-01/ [lemire.me]
2017-03-02 17:58
tags:
math
random
And how to uniformly pick one.
source: L