19.11.2014 Views

Introduction to CUDA C/C++

Introduction to CUDA C/C++

Introduction to CUDA C/C++

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Addition with Blocks and Threads: main()<br />

// Copy inputs <strong>to</strong> device<br />

cudaMemcpy(d_a, a, size, cudaMemcpyHostToDevice);<br />

cudaMemcpy(d_b, b, size, cudaMemcpyHostToDevice);<br />

// Launch add() kernel on GPU<br />

add(d_a, d_b, d_c);<br />

// Copy result back <strong>to</strong> host<br />

cudaMemcpy(c, d_c, size, cudaMemcpyDeviceToHost);<br />

}<br />

// Cleanup<br />

free(a); free(b); free(c);<br />

cudaFree(d_a); cudaFree(d_b); cudaFree(d_c);<br />

return 0;<br />

© NVIDIA Corporation 2011

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!