SyncAI.news, a Varaisys broadcasting
ND

NVIDIA Developer

· 1 min read

VideosNVIDIA Developer (YouTube)

How to Profile and Optimize CUDA Tile Kernels with NVIDIA Nsight Compute

NVIDIA Nsight Compute can now profile CUDA Tile kernels directly, giving developers detailed visibility into how tile-based code runs on the GPU. CUDA Tile lets you write CUDA at a higher level, working with multidimensional arrays called Tiles instead of managing threads, blocks, and grids manually. The compiler handles the mapping to hardware, but that raises a question: when the compiler decides how your kernel runs, how do you know if it's fast, or where it's slowing down?

Nsight Compute closes that visibility gap. It connects GPU performance data back to your CUDA Tile kernel, identifies what is limiting performance, and points you toward concrete optimizations. That means you can take advantage of higher-level GPU programming without giving up visibility into occupancy, memory access behavior, generated SASS, or source-level performance.

Watch to see how these insights translate into measurable results: two targeted changes increase occupancy and reduce kernel duration by 81%.

Original source

This video was published by NVIDIA Developer (YouTube) and written by NVIDIA Developer. SyncAI.news embeds the publisher's own player.

Watch on youtube.com

Similar News