Loading...
[-]

Monthly Archives: June 2009

Getting Started with CUDA (3/3) – Pageable and pinned memory

I’d added GPU based timing to my template code and found out that most of the time was spent copying data back and forth between the host and the device. The “Bandwidth Test” in the SDK gave roughly similar results although it mentioned something about pageable memory. But the big problem was the theoretical performance [...]

Getting Started with CUDA (2/3) – How is the GPU spending its time?

I had modified the supplied SDK template code in a minimal way in order to measure CPU vs GPU performance and found that for the simple test code (1 float multiplication) that the E8400 CPU with a claimed 24 Gflops was handily out performing a GPU with a theoretical max 504 Gflops. Where was all [...]

Getting Started with CUDA (1/3) – SDK template

What are the capabilities of Nvidia’s CUDA running on the GPU and how does it compare to CPU performance? I bought a GeForce 9800GT and set about finding out, starting off by installing the CUDA drivers, toolkit and SDK from the Cuda Zone.
The first thing I noticed was that on my Vista64 machine the [...]