[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] RE: [Xen-devel] [PATCH] x86: add SSE-based copy_page()
>>> Dan Magenheimer <dan.magenheimer@xxxxxxxxxx> 12.11.08 18:17 >>> >Hmmm... I'm working on a project that does extensive page-copying >so was eager to give it a spin on two test machines, one a Core 2 Duo >("Weybridge"), the other an as-yet-unreleased Intel box. I measured >the routine with rdtsc, took many thousands of samples, and >look at the smallest measurement. The hypervisor measured is >64-bit so "cpu_has_xmm2" appears to always be true. > >On the first machine, the change to use sse2 instructions >made no difference. On the second machine, using sse2 actually >made copy_page() *worse* (by 30-40%). This very much depends on whether the page(s) are in any caches - in the general case (e.g. when dealing with large sets of data, or data just read from disk), you'd expect both pages (source and destination) not to be in any cache. This is where using the streaming instructions helps. However, when dealing with a small set of pages (or even just a single source/destination pair), you'd easily run entirely on L1 or L2 data, which certainly performs better using the non-streaming instructions. >I'm poor enough with the x86 instruction set that I can't explain >my results, but thought I would report them. I'm not doubting that >you saw improvements on your box, just noting that YMMV. > >Perhaps someone from Intel familiar with the microarchitectures >might be able to explain (and can query me offlist to identify >the as-yet-unreleased box). The above is not to say that there are other reasons why this would perform worse on as-yet-unreleased hardware (which I wasn't able to test on and hence can't say anything about). Jan _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |