<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    posts - 51, comments - 17, trackbacks - 0, articles - 9
      BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理

    counting 1 bits C implementations

    Posted on 2007-06-27 18:30 chenweicai 閱讀(352) 評論(0)  編輯  收藏

    counting 1 bits C implementations

    (idea) by bis (1.5 mon) (print)   ?   Thu Oct 18 2001 at 4:34:42

    Here are C implementations of all the methods for counting 1 bits mentioned in that node. (Go read that first, if you haven't already.) All of the statistical information is purely anecdotal, but for what it's worth, it's based on my testing the code on a Pentium 3 and a Celeron 2, using the cl compiler of Microsoft Visual C++, and on a Sun Ultra 5, using gcc and Sun's own cc. For testing 64-bit code, I used __int64 on the Intel machines, and long long on the Sparc. It's worth noting that while Sun's compiler outputs faster executables than gcc, it doesn't change the relative performance of the different methods.

    Table Lookup

    Use a pre-built lookup table of all the 1-bit counts for every possibly byte, then index into that for each byte that comprises the word. This is the fastest method (slightly) for 32 bits on both Intel and Sparc, and (even more slightly) the fastest for 64 bits on Sparc, falling to second fastest on 64 bits on Intel. Changing the lookup table from anything but unsigned or int makes it a little slower (what with the extra casting and byte-loading the compiler is forced to add.)
    unsigned numbits_lookup_table[256] = {
                    0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4, 1, 2, 2, 3, 2, 3, 3, 4, 2,
                    3, 3, 4, 3, 4, 4, 5, 1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5, 2, 3,
                    3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3,
                    4, 3, 4, 4, 5, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 2, 3, 3, 4,
                    3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5,
                    6, 6, 7, 1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5, 2, 3, 3, 4, 3, 4,
                    4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5,
                    6, 3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7, 2, 3, 3, 4, 3, 4, 4, 5,
                    3, 4, 4, 5, 4, 5, 5, 6, 3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7, 3,
                    4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7, 4, 5, 5, 6, 5, 6, 6, 7, 5, 6,
                    6, 7, 6, 7, 7, 8
                    };
                    unsigned numbits_lookup(unsigned i)
                    {
                    unsigned n;
                    n = numbits_lookup_table[i & 0xff];
                    n += numbits_lookup_table[i>>8  & 0xff];
                    n += numbits_lookup_table[i>>16 & 0xff];
                    n += numbits_lookup_table[i>>24 & 0xff];
                    return n;
                    }
                    

     

    Counters

    If you want a full explanation of how this works, read my writeup at counting 1 bits, but suffice it to say that you are essentially partitioning the word into groups, and combining the groups by adding them together in pairs until you are left with only one group, which is the answer. (performance notes in the next section.)
    unsigned numbits(unsigned int i)
                    {
                    unsigned int const MASK1  = 0x55555555;
                    unsigned int const MASK2  = 0x33333333;
                    unsigned int const MASK4  = 0x0f0f0f0f;
                    unsigned int const MASK8  = 0x00ff00ff;
                    unsigned int const MASK16 = 0x0000ffff;
                    i = (i&MASK1 ) + (i>>1 &MASK1 );
                    i = (i&MASK2 ) + (i>>2 &MASK2 );
                    i = (i&MASK4 ) + (i>>4 &MASK4 );
                    i = (i&MASK8 ) + (i>>8 &MASK8 );
                    i = (i&MASK16) + (i>>16&MASK16);
                    return i;
                    }
                    

     

    Optimized Counters

    call pointed out in counting 1 bits that you could optimize the Counters method further if you pay attention to which bits you care about and which you don't, which allows you to skip applying some of the masks.

     

    Some symbols that I'll use to represent what's going on:

    • 0: bits we know are zero from the previous step
    • o: bits we know are zero due to masking
    • -: bits we know are zero due to shifting
    • X: bits that might be 1 and we care about their values
    • x: bits that might be 1 but we don't care about their values

     

    So a 0 plus a 0 is still a 0, obviously; the tricky ones are the others, but they're not even so bad. 0 plus X is X, since if the X is a 0 or a 1, added to 0 it will pass through unchanged. However, X plus X is XX, because the sum can range from 0 (0+0), to 10 (1+1). The same holds true with xs, once those show up.

    Step 1:

            oXoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX
                    +       -XoXoXoXoXoXoXoXoXoXoXoXoXoXoXoX
                    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
                    
    Step 2:
            ooXXooXXooXXooXXooXXooXXooXXooXX
                    +       --XXooXXooXXooXXooXXooXXooXXooXX
                    0XXX0XXX0XXX0XXX0XXX0XXX0XXX0XXX
                    
    Step 3:
            oooo0XXXoooo0XXXoooo0XXXoooo0XXX
                    +       ----0XXXoooo0XXXoooo0XXXoooo0XXX
                    0000XXXX0000XXXX0000XXXX0000XXXX
                    
    Step 4:
            oooooooo0000XXXXoooooooo0000XXXX
                    +       --------0000XXXXoooooooo0000XXXX
                    00000000000XXXXX00000000000XXXXX
                    
    Step 5:
            oooooooooooooooo00000000000XXXXX
                    +       ----------------00000000000XXXXX
                    00000000000000000000000000XXXXXX
                    
    You'll notice that the higher the step, the more known zeros (0) there are. call's suggestion was to change step 5 to this:

    Step 5:
            ooooooooooooxxxx00000000000XXXXX
                    +       ----------------00000000000XXXXX
                    000000000000xxxx0000000000XXXXXX
                    (mask)  ooooooooooooooooooooooooooXXXXXX
                    
    (where "(mask)" means "after adding, apply a mask".)

     

    However, you can go back even further and apply the same technique - all the way to step 3, in fact. The best I can think to optimize this changes the last three steps into the following: Step 3:

            0xxx0XXX0xxx0XXX0xxx0XXX0xxx0XXX
                    +       ----0XXX0xxx0XXX0xxx0XXX0xxx0XXX
                    0xxxXXXX0xxxXXXX0xxxXXXX0xxxXXXX
                    (mask)  0000XXXX0000XXXX0000XXXX0000XXXX
                    
    Step 4:
            0000xxxx0000XXXX0000xxxx0000XXXX
                    +       --------0000XXXX0000xxxx0000XXXX
                    0000xxxx000XXXXX000xxxxx000XXXXX
                    
    Step 5:
            0000xxxx000xxxxx000xxxxx000XXXXX
                    +       ----------------000xxxxx000XXXXX
                    0000xxxx000xxxxx00xxxxxx00XXXXXX
                    (mask)  ooooooooooooooooooooooooooXXXXXX
                    
    Anyway, that's all very lovely, but here's the C to do it:
    unsigned numbits(unsigned int i)
                    {
                    unsigned int const MASK1  = 0x55555555;
                    unsigned int const MASK2  = 0x33333333;
                    unsigned int const MASK4  = 0x0f0f0f0f;
                    unsigned int const MASK6 = 0x0000003f;
                    unsigned int const w = (v & MASK1) + ((v >> 1) & MASK1);
                    unsigned int const x = (w & MASK2) + ((w >> 2) & MASK2);
                    unsigned int const y = (x + (x >> 4) & MASK4);
                    unsigned int const z = (y + (y >> 8));
                    unsigned int const c = (z + (z >> 16)) & MASK6;
                    return c;
                    }
                    
    The performance on this method is marginally worse than the lookup method in the 32 bit cases, slightly better than lookup on 64 bit Intel, and right about the same on 64 bit Sparc. Of note is the fact that loading one of these bitmasks into a register actually takes two instructions on RISC machines, and a longer-than-32-bit instruction on the Intel, because it's impossible to pack an instruction and 32 bits worth of data into a single 32 bit instruction. See the bottom of jamesc's writeup at MIPS for more details on that...

     

    Mind-bending "best" method (even more optimized counters)

    A slightly-modified version of the code on this page: http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel, which in turn stole the code from the "Software Optimization Guide for AMD AthlonTM 64 and OpteronTM Processors":
    unsigned numbits(unsigned int i)
                    {
                    unsigned int const MASK1 = 0x55555555;
                    unsigned int const MASK2 = 0x33333333;
                    unsigned int const MASK4 = 0x0f0f0f0f;
                    unsigned int const w = v - ((v >> 1) & MASK1);
                    unsigned int const x = (w & MASK2) + ((w >> 2) & MASK2);
                    unsigned int const y = (x + (x >> 4) & MASK4);
                    unsigned int const c = (y * 0x01010101) >> 24;
                    return c;
                    }
                    
    This method is identical to the "Optimized Counters" method, with two tricks applied:
    1. To get rid of an AND in the first line: instead of adding adjacent bits, it subtracts the high bit by itself of a pair of the bits from the pair together, because the results are the same. 00 - 0 = 0, 01 - 0 = 01, 10 - 1 = 01, 11 - 1 = 10
    2. To merge the last two lines into one, it uses a multiply and a shift, which adds the four remaining byte-sized "counters" together in one step.

     

    Subtract 1 and AND

    See counting 1 bits SPOILER for a fuller explanation of this one, but basically the lowest 1-bit gets zeroed out every iteration, so when you run out of 1s to zero, you've iterated to the number of bits in the word. Clever. Unfortunately, not that terribly fast; it's roughly two to three times slower than the lookup and counters methods on both architectures.
    unsigned numbits_subtraction(unsigned i)
                    {
                    unsigned n;
                    for(n=0; i; n++)
                    i &= i-1;
                    return n;
                    }
                    

     

    Straightforwardly Examine Each Bit

    The most easily understandable and slowest method: iterate over all the bits in the word; if the current bit is a 1, then increment the counter, otherwise, do nothing. That's actually done here by looking at the least-significant bit on each iteration, then shifting to the right one, and iterating until there are no more 1 bits in the word. There's a little optimization in the #ifndef here: instead of doing if (i & 1) n++;, which uses a branch instruction, just add the actual value of the least-significant bit to the counter ( n += (i & 1); ), as it will be a 1 when you want to add 1, and 0 when you don't. (We're just twiddling bits anyway, so why not?) This actually makes the processor do more adds, but adding is fast, and branching is slow, on modern processors, so it turns out to be about twice as fast. However, even "twice as fast" is still four to five times slower than the lookup method, again, on all architectures.
    unsigned numbits(unsigned int i)
                    {
                    unsigned n;
                    for(n=0; i; i >>= 1)
                    #ifndef MORE_OPTIMAL
                    if (i & 1) n++;
                    #else
                    n += (i & 1);
                    #endif
                    return n;
                    }
                    
    Now, why does this all matter? It doesn't, really, but it was sure a good way to waste some time, and maybe someone learned some optimizing tricks from it... (Well, I did, actually - so I hope someone else did as well.)

    只有注冊用戶登錄后才能發表評論。


    網站導航:
     
    主站蜘蛛池模板: 久久久亚洲精华液精华液精华液| 亚洲精品电影在线| 最新亚洲成av人免费看| 久久久无码精品亚洲日韩蜜桃| 亚洲精品二三区伊人久久| 免费一级全黄少妇性色生活片 | 亚洲男人的天堂在线va拉文| 久久综合图区亚洲综合图区| 亚洲a∨国产av综合av下载| 久久久久久99av无码免费网站| 在线播放亚洲第一字幕| 久99久无码精品视频免费播放| 最近最新中文字幕完整版免费高清| 亚洲五月综合缴情在线观看| 亚洲AV第一成肉网| 国产又长又粗又爽免费视频| 亚洲香蕉免费有线视频| 亚洲视频在线免费| 日韩精品免费一区二区三区| 久久亚洲精品成人AV| 久久性生大片免费观看性| 国产亚洲3p无码一区二区| 免费人成再在线观看网站| 亚洲人成人无码网www国产| 91免费在线视频| 亚洲精品久久久www | 91亚洲精品第一综合不卡播放| 久久综合国产乱子伦精品免费| 久久精品国产亚洲7777| 国产亚洲视频在线| 成人a免费α片在线视频网站| 4480yy私人影院亚洲| 毛片免费观看视频| j8又粗又长又硬又爽免费视频| 亚洲av色影在线| 午夜两性色视频免费网站| 亚洲另类春色校园小说| 久久久久久精品成人免费图片 | 4hu四虎免费影院www| 亚洲国产精品久久久久秋霞影院| 一区在线免费观看|