Pushed to master with Co-authored-by relationship,
Jarno
On Oct 6, 2014, at 3:54 PM, Ben Pfaff wrote:
> On Fri, Oct 03, 2014 at 01:22:07PM -0700, Jarno Rajahalme wrote:
>> Replace bitwise loops with a single operation, inline all bitmap
>> functions. Inlining allows the compiler to remove un
On Fri, Oct 03, 2014 at 01:22:07PM -0700, Jarno Rajahalme wrote:
> Replace bitwise loops with a single operation, inline all bitmap
> functions. Inlining allows the compiler to remove unnecessary code
> due to some parameters being compile-time constants.
>
> Before:
>
> $ tests/ovstest test-bit
Replace bitwise loops with a single operation, inline all bitmap
functions. Inlining allows the compiler to remove unnecessary code
due to some parameters being compile-time constants.
Before:
$ tests/ovstest test-bitmap benchmark 100
bitmap equal:341 ms
bitmap scan: 8089 ms
After:
$