Review Request 113485: Speed up natural sorting by first sorting the items according to KFileItem::text() with QString::operator<()

Emmanuel Pescosta emmanuelpescosta099 at gmail.com
Wed Oct 30 18:12:30 GMT 2013



> On Oct. 29, 2013, 3:19 p.m., Emmanuel Pescosta wrote:
> > A "Ship It" from my side.
> > 
> > Great idea btw.
> > 
> > Another great thing about this patch is, that we can make use of these sequences of already "sorted" items
> > to speed up the sorting, when we use Timsort in future (maybe?).
> 
> Frank Reininghaus wrote:
>     Yes, it would definitely be interesting to see how this approach works when combined with Timsort. I would expect that it will speed up the sorting even more. It would also be interesting to try if Timsort works well only for the "final sorting", or if it can even make the "first non-natural sorting" faster if it is modified such that it can make use of multiple CPU cores (when sorting items in random order, plain Timsort will most likely always be slower than multithreaded Merge Sort on a machine with many cores).

> can make use of multiple CPU cores
I'm already working on it ;)

But my time is currently very very limited so I can't finish it for Dolphin 4.12.


- Emmanuel


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/113485/#review42636
-----------------------------------------------------------


On Oct. 30, 2013, 5:53 p.m., Frank Reininghaus wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> http://git.reviewboard.kde.org/r/113485/
> -----------------------------------------------------------
> 
> (Updated Oct. 30, 2013, 5:53 p.m.)
> 
> 
> Review request for Dolphin.
> 
> 
> Repository: kde-baseapps
> 
> 
> Description
> -------
> 
> We all know now that natural sorting can be very slow. There are two ways to improve this:
> 
> 1. Make the "natural comparison" of two items faster. We might be able to do this when we can use QCollator from Qt5.
> 
> 2. Reduce the number of (expensive) comparisons.
> 
> This patch implements option 2 by first doing a very fast non-natural sorting of the items according to their name. The resulting sequence of items is partially sorted even according to the "natural" comparison, and this makes it possible to do the final sorting with a far lower number of comparisons.
> 
> 
> Diffs
> -----
> 
>   dolphin/src/kitemviews/kfileitemmodel.h d005705 
>   dolphin/src/kitemviews/kfileitemmodel.cpp f21edbf 
> 
> Diff: http://git.reviewboard.kde.org/r/113485/diff/
> 
> 
> Testing
> -------
> 
> Loaded a folder with 100,000 items with the names "a1.txt", ..., "a100000.txt". I guess that this is also one of the worst cases with respect to "difference between natural and non-natural sort order".
> 
> This patch reduces the time needed to sort in a release build (commented out the profiling output in insertItems()) from 1940 ms to 714 ms, which is a saving of about 63%.
> 
> 
> Thanks,
> 
> Frank Reininghaus
> 
>

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.kde.org/mailman/private/kfm-devel/attachments/20131030/8e3be7cc/attachment.htm>


More information about the kfm-devel mailing list