Built-in mod ('%') vs custom mod function: improve the performance of modulus operation

前端 未结 5 1706
逝去的感伤
逝去的感伤 2020-12-09 06:43

Recently I came to know that the mod(\'%\') operator is very slow. So I made a function which will work just like a%b. But is it faster than the mod operator?

Here\'

5条回答
  •  北荒
    北荒 (楼主)
    2020-12-09 07:16

    According to Chandler Carruth's benchmarks at CppCon 2015, the fastest modulo operator (on x86, when compiled with Clang) is:

    int fast_mod(const int input, const int ceil) {
        // apply the modulo operator only when needed
        // (i.e. when the input is greater than the ceiling)
        return input >= ceil ? input % ceil : input;
        // NB: the assumption here is that the numbers are positive
    }
    

    I suggest that you watch the whole talk, he goes into more details on why this method is faster than just using % unconditionally.

提交回复
热议问题