CUDA tutorial

Revision as of 18:55, 3 November 2016 by Sergueev (talk | contribs)

Introduction

What is GPU ?

GPU, or a graphics processing unit, is a single-chip processor that performs rapid mathematical calculations, primarily for the purpose of rendering images. However, in the recent years, such capability is being harnessed more broadly to accelerate computational workloads of the cutting-edge scientific research areas.

What is CUDA ?

CUDA = Compute Unified Device Architecture Provides access to instructions and memory of massively parallel elements in GPU. Another definition: CUDA is scalable parallel programming model and software environment for parallel computing.

Terminology

  • Host – The CPU and its memory (host memory)
  • Device – The GPU and its memory (device memory)