qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [v2 0/2] add avx2 instruction optimization


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [v2 0/2] add avx2 instruction optimization
Date: Thu, 12 Nov 2015 10:45:15 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0


On 12/11/2015 10:40, Li, Liang Z wrote:
> I migrate a 8GB RAM Idle guest,  I think most of it's pages are zero pages.
> 
> I use your new code:
> -------------------------------------------------
>       unsigned long *p = ...
>       if (p[0] || p[1] || p[2] || p[3]
>           || memcmp(p+4, p, size - 4 * sizeof(unsigned long)) != 0)
>               return BUFFER_NOT_ZERO;
>       else
>               return BUFFER_ZERO;
> ---------------------------------------------------
> and the result is almost the same.  I also tried the check 8, 16 long data at 
> the beginning, 
> same result.

Interesting...  Well, all I can say is that applaud you for testing your
hypothesis with the benchmark.

Probably the setup cost of memcmp is too high, because the testing loop
is already very optimized.

Please submit the AVX2 version if it helps!

Paolo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]