Wandering Thoughts archives

2007-08-11

On the performance of Python longs being used as bitmaps

A comment on the previous entry got me interested in what exactly cost all the time when using Python longs as bitmaps. Some poking shows that the time & takes scales up based on the smaller long involved, and the time | takes scales based on the larger long involved. While this is not particularly surprising, it means that setting and clearing any bit has a cost based on how big the bitmap is, ie, what the largest set bit is.

(Checking low bits in a large bitmap is relatively cheap, since one side of the & will be small.)

There are two core performance issues with longs as bitmaps: there's no bit addressing, and you can't mutate a long in place so any change to your bitmap requires allocating a new object. The first is the most important, because it means you are making longs left and right and then doing big expensive operations merely to deal with one bit.

While Python could in theory add bit addressing to longs (allowing you to get and set a specific bit), I doubt it will, since I suspect that the need is relatively esoteric and you can probably do about as well with a list of Python integers (or a C level module if you really need speed).

Sidebar: some numbers

Here's a performance chart for bmap & ~(1L << bit), where bmap has only bit and bit+1 set:

bit time (µsec) doing the << doing the ~ doing the &
0 0.59 40.1% 20.2% 39.7%
1 0.59 41.1% 21.4% 37.4%
8 0.60 40.4% 20.0% 39.6%
16 0.63 39.7% 18.2% 42.1%
32 0.62 39.1% 19.4% 41.5%
64 0.65 37.8% 20.0% 42.3%
128 0.67 37.5% 19.2% 43.3%
256 0.79 33.8% 19.2% 47.0%
512 0.94 31.2% 21.9% 46.9%
1024 1.28 26.0% 21.1% 52.9%
1536 1.61 23.3% 21.7% 55.0%
2048 2.35 20.5% 23.3% 56.2%
4096 3.74 17.7% 23.2% 59.1%

The percentages are the relative proportions of the overall time that the left shift, the inversion, and the binary anding take. Timings are from Python 2.4.4 on a 64-bit Fedora Core 6 machine with an AMD Athlon 4600+ CPU.

python/BitmapLongPerformance written at 14:19:58; Add Comment


Page tools: See As Normal.
Search:
Login: Password:
Atom Syndication: Recent Pages, Recent Comments.

This dinky wiki is brought to you by the Insane Hackers Guild, Python sub-branch.