Re: GPU Accelerated Sorting - Mailing list pgsql-performance

From Jeff Davis
Subject Re: GPU Accelerated Sorting
Date
Msg-id 1283205707.6656.15.camel@jdavis-ux.asterdata.local
Whole thread Raw
In response to GPU Accelerated Sorting  (Eliot Gable <egable+pgsql-performance@gmail.com>)
List pgsql-performance
On Mon, 2010-08-30 at 09:51 -0400, Eliot Gable wrote:
> Not sure if anyone else saw this, but it struck me as an interesting
> idea if it could be added to PostgreSQL. GPU accelerated database
> operations could be very... interesting. Of course, this could be
> difficult to do in a way that usefully increases performance of
> PostgreSQL, but I'll leave that up to you guys to figure out.
>
> http://code.google.com/p/back40computing/wiki/RadixSorting
>

Radix sort is not a comparison sort. Comparison sorts work for any data
type for which you define a total order; and any total order is allowed.
Radix sort only works for some data types and some total orders.

However, it would be very nice to use radix sorting where it does work.
That would require some extensions to the type system, but it could be
done.

The GPU issue is orthogonal.

Regards,
    Jeff Davis


pgsql-performance by date:

Previous
From: David Boreham
Date:
Subject: Re: GPU Accelerated Sorting
Next
From: Chris Browne
Date:
Subject: Re: GPU Accelerated Sorting