8600GT Faster than GTX 285 ? Strange performance in opencl app...

Hi!

I have a small app which solves a set of coupled differental equations in 1D space + time. Each iteration is quite small, contains something like 100 points to move forward in time, but each point requires a bit of computation (including image-lookups). I have tried to implement in different ways. One just using global memory at all and one using local memory + halo (5 point stencil, so 2 halo points at each side) for the finite differences. Here are the execution times (of the kernel):

8600GT global memory version:
8.6s
8600GT local memory version (local group size 32 is optimal):
7.5s

GTX 285 global memory version:
8.5s
GTX 285 local memory version (local group size 32):
17.2s
GTX 285 local memory version (local group size 2 is optimal!):
11.7s

For reference, a C++ version on a 2GHz Xeon takes 18.1s.

Both GPU versions run single precision, while the CPU uses double precision.

Any ideas to why the GTX 285 is SLOWER than the 8600GT when using local memory and ONLY just as fast when using global memory?

Everything is under Linux with the latest Nvidia beta drivers.

Best regards,
Madsen

try 195.36.08 certified, it doubles the performance of CL(as for me with CL/GL interop, may be for general purpose as well)

Thanks, I’ll do that! The latest Linux 64 bit driver I can find is 190.53 Certified, and the latest beta is 195.30. Where did you download the 195.36.08 certified?

http://www.nvidia.com/object/unix.html

so wait a while )

Thanks, sounds like good advice :)