Re: GPUSort project

Lists: pgsql-hackers
From: Mischa Sandberg <mischas(at)ActiveState(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: GPUSort project
Date: 2006-04-11 23:02:07
Message-ID: 443C356F.5050306@activestate.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

Anybody on this list hear/opine anything pf the GPUSort project for postgresql?
I'm working on a radix-sort subcase for tuplesort, and there are similarities.

http://www.andrew.cmu.edu/user/ngm/15-823/project/

--
Engineers think that equations approximate reality.
Physicists think that reality approximates the equations.
Mathematicians never make the connection.


From: Martijn van Oosterhout <kleptog(at)svana(dot)org>
To: mischa(at)ActiveState(dot)com
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: GPUSort project
Date: 2006-04-12 05:20:42
Message-ID: 20060412052042.GA22456@svana.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On Tue, Apr 11, 2006 at 04:02:07PM -0700, Mischa Sandberg wrote:
> Anybody on this list hear/opine anything pf the GPUSort project for
> postgresql? I'm working on a radix-sort subcase for tuplesort, and there
> are similarities.
>
> http://www.andrew.cmu.edu/user/ngm/15-823/project/

I've heard it meantioned, didn't know they'd got it working. However,
none of my database servers have a 3D graphics anywhere near the power
they suggest in the article.

Is this of practical use for run-of-the-mill video cards?
--
Martijn van Oosterhout <kleptog(at)svana(dot)org> http://svana.org/kleptog/
> Patent. n. Genius is 5% inspiration and 95% perspiration. A patent is a
> tool for doing 5% of the work and then sitting around waiting for someone
> else to do the other 95% so you can sue them.


From: Benny Amorsen <benny+usenet(at)amorsen(dot)dk>
To: pgsql-hackers(at)postgresql(dot)org
Subject: Re: GPUSort project
Date: 2006-04-12 07:31:52
Message-ID: m3y7yb6yhj.fsf@ursa.amorsen.dk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

>>>>> "MvO" == Martijn van Oosterhout <kleptog(at)svana(dot)org> writes:

MvO> Is this of practical use for run-of-the-mill video cards? --

The article suggests that using the GPU is a win even on a $100 64MB
card. The built-in card in most servers is probably not worth
bothering with, but many servers offer PCI Express these days.

/Benny


From: Mischa Sandberg <mischas(at)ActiveState(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: Re: GPUSort project
Date: 2006-04-12 17:00:53
Message-ID: 443D3245.3060506@activestate.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

Martijn van Oosterhout wrote:
> On Tue, Apr 11, 2006 at 04:02:07PM -0700, Mischa Sandberg wrote:
>
>>Anybody on this list hear/opine anything pf the GPUSort project for
>>postgresql? I'm working on a radix-sort subcase for tuplesort, and there
>>are similarities.
>>
>>http://www.andrew.cmu.edu/user/ngm/15-823/project/
>
> I've heard it meantioned, didn't know they'd got it working. However,
> none of my database servers have a 3D graphics anywhere near the power
> they suggest in the article.
>
> Is this of practical use for run-of-the-mill video cards?

Short answer: maybe.

Long answer: we're shipping a server (appliance) product built on stock
rackmount hardware, that includes an ATI Rage (8MB) with nothing to do. Much of
what the box does is a single cpu-bound process, sorting maillog extracts. The
GPU is an asset, even at 8MB; the headwork is in mapping/truncating sort keys
down to dense ~32bit prefixes; and in making smooth judgements as to when to
give the job to (a) the GPU (b) quicksort (c) a tiny bitonic sort in the SSE2
registers.

Any of this would apply to postgres, if tuplesort.c can tolerate a preprocessing
step that looks for special cases, and degrades gracefully into the standard
case. I'm guessing that there are enough internal sorts (on oid, for example)
having only small, memcmp-able sort keys, that this is worth adding in.

--
Engineers think that equations approximate reality.
Physicists think that reality approximates the equations.
Mathematicians never make the connection.


From: Simon Riggs <simon(at)2ndquadrant(dot)com>
To: mischa(at)ActiveState(dot)com
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: GPUSort project
Date: 2006-04-12 18:32:32
Message-ID: 1144866752.23363.24.camel@localhost.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On Wed, 2006-04-12 at 10:00 -0700, Mischa Sandberg wrote:
> Martijn van Oosterhout wrote:
> > On Tue, Apr 11, 2006 at 04:02:07PM -0700, Mischa Sandberg wrote:
> >
> >>Anybody on this list hear/opine anything pf the GPUSort project for
> >>postgresql? I'm working on a radix-sort subcase for tuplesort, and there
> >>are similarities.
> >>
> >>http://www.andrew.cmu.edu/user/ngm/15-823/project/
> >
> > I've heard it meantioned, didn't know they'd got it working. However,
> > none of my database servers have a 3D graphics anywhere near the power
> > they suggest in the article.
> >
> > Is this of practical use for run-of-the-mill video cards?
>
> Short answer: maybe.
>
> Long answer: we're shipping a server (appliance) product built on stock
> rackmount hardware, that includes an ATI Rage (8MB) with nothing to do. Much of
> what the box does is a single cpu-bound process, sorting maillog extracts. The
> GPU is an asset, even at 8MB; the headwork is in mapping/truncating sort keys
> down to dense ~32bit prefixes; and in making smooth judgements as to when to
> give the job to (a) the GPU (b) quicksort (c) a tiny bitonic sort in the SSE2
> registers.

There's been talk for the last few years in academic circles about
trying to use graphics APIs and/or specialised hardware to improve
various aspects of database technology.

It sounds like its possible, but it would have to give incredible gains
before its worth the effort to make it happen. 8MB of video RAM doesn't
score much against 256MB of normal RAM, which is pretty cheap these
days.

The hardware dependency would make this extremely sensitive to change,
so effort in this area might not give lasting benefit. As it happens,
I'm in favour of making code changes to exploit hardware, but this one
is too far for me to encourage anybody to pursue it further.

> Any of this would apply to postgres, if tuplesort.c can tolerate a preprocessing
> step that looks for special cases, and degrades gracefully into the standard
> case.

For other techniques, I think it can, depending upon the cost of the
preprocessing step. But the overall improvement from improving small
sorts could well be lost in the noise...so maybe not worth it.

--
Simon Riggs
EnterpriseDB http://www.enterprisedb.com/


From: Mischa Sandberg <mischas(at)ActiveState(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: Re: GPUSort project
Date: 2006-04-12 20:22:34
Message-ID: 443D618A.7060604@activestate.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

[short]
This probably would be an uneasy fit into generic backend code.
Was hoping the GPUSort project might have fleeced/sorted out some issues.

[long]
Simon Riggs wrote:
> On Wed, 2006-04-12 at 10:00 -0700, Mischa Sandberg wrote:
...
>>Long answer: we're shipping a server (appliance) product built on stock
>>rackmount hardware, that includes an ATI Rage (8MB) with nothing to do. Much of
>>what the box does is a single cpu-bound process, sorting maillog extracts. The
>>GPU is an asset, even at 8MB; the headwork is in mapping/truncating sort keys
>>down to dense ~32bit prefixes; and in making smooth judgements as to when to
>>give the job to (a) the GPU (b) quicksort (c) a tiny bitonic sort in the SSE2
>>registers.

> It sounds like its possible, but it would have to give incredible gains
> before its worth the effort to make it happen. 8MB of video RAM doesn't
> score much against 256MB of normal RAM, which is pretty cheap these
> days.

A better comparison is 8MB of video RAM vs 512K of L2 cache. GPU's (also) have
faster access (>32GB/s) to RAM than the CPU, using AGP/PCI with no contention.
Our product uses Xeons instead of Opterons; the 3GHz CPUs are just slogging,
waiting >70% for RAM fetch.

> The hardware dependency would make this extremely sensitive to change,
> so effort in this area might not give lasting benefit. As it happens,
> I'm in favour of making code changes to exploit hardware, but this one
> is too far for me to encourage anybody to pursue it further.

Fair comment. I'm using OpenGL, and looking at Glift, so it's not as
hardware-specific as you might think. Other projects at gpgpu.org seem to be
able to switch among GPU's.

That being said, humbly admit that targetting specific hardware tends to give
one tunnel vision. Coding "if all these conditions are true, use the fast
algorithm, else do it the normal way" is also messier to extend than a nice
clean interface layer :-(

>>Any of this would apply to postgres, if tuplesort.c can tolerate a preprocessing
>>step that looks for special cases, and degrades gracefully into the standard
>>case.

> For other techniques, I think it can, depending upon the cost of the
> preprocessing step. But the overall improvement from improving small
> sorts could well be lost in the noise...so maybe not worth it.

Agreed. GPU setup makes sorts <1MB not worth it.

Small sorts get a boost from bitonic sort in SSE2, which wires into the bottom
of a special-case quicksort, where any subrange of 9..16 elements gets done in
xmm registers.

I think the preprocessing to test and format keys for such sorts
is useful anyway. I was trying to make radix sort usable, and that requires the
same key prep. Even if the key prep hits its space limit and says,
the input is unsuitable for radix sort, it still makes the normal quicksort
faster, since some key prefixes are shorter.

--
Engineers think that equations approximate reality.
Physicists think that reality approximates the equations.
Mathematicians never make the connection.


From: mark(at)mark(dot)mielke(dot)cc
To: Benny Amorsen <benny+usenet(at)amorsen(dot)dk>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: GPUSort project
Date: 2006-04-13 14:20:10
Message-ID: 20060413142010.GA6683@mark.mielke.cc
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On Wed, Apr 12, 2006 at 09:31:52AM +0200, Benny Amorsen wrote:
> >>>>> "MvO" == Martijn van Oosterhout <kleptog(at)svana(dot)org> writes:
> MvO> Is this of practical use for run-of-the-mill video cards? --
> The article suggests that using the GPU is a win even on a $100 64MB
> card. The built-in card in most servers is probably not worth
> bothering with, but many servers offer PCI Express these days.

I would imagine that one of the more major benefits of modern video
cards (not cheap ones though) is the faster memory that they use.
GDDR3... :-)

My minimal research on the subject suggests that the memory is double
or triple that of regular DDR or DDR2 in terms of performance.

Cheers,
mark

--
mark(at)mielke(dot)cc / markm(at)ncf(dot)ca / markm(at)nortel(dot)com __________________________
. . _ ._ . . .__ . . ._. .__ . . . .__ | Neighbourhood Coder
|\/| |_| |_| |/ |_ |\/| | |_ | |/ |_ |
| | | | | \ | \ |__ . | | .|. |__ |__ | \ |__ | Ottawa, Ontario, Canada

One ring to rule them all, one ring to find them, one ring to bring them all
and in the darkness bind them...

http://mark.mielke.cc/