NVIDIA OpenCL SDK Code Samples

The GPU Computing SDK includes 100+ code samples, utilities, whitepapers, and additional documentation to help you get started developing, porting, and optimizing your applications for the CUDA architecture. You can get quick access to many of the SDK resources on this page, SDK documentation, or download the complete SDK.

Please note that you may need to install the latest NVIDIA drivers and CUDA Toolkit to compile and run the code samples.

Refer to the SDK release notes for more information.


Using Inline PTX with OpenCL For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

A simple test application that demonstrates a new CUDA 4.0 driver ability to embed PTX in a OpenCL kernel.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


Marching Cubes Isosurfaces For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This sample extracts a geometric isosurface from a volume dataset using the marching cubes algorithm. It uses the scan (prefix sum) function from the oclScan SDK sample to perform stream compaction.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Tridiagonal For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

Efficient matrix solvers for large number of small independent tridiagonal linear systems. OpenCL implementation of 3 different solvers: Parallel Cyclic Reduction, Cyclic Reduction, Sweep (Gauss elimination + reordering optimization for full coalescing).
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Device Query For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This sample enumerates the properties of the OpenCL devices present in the system.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Bandwidth Test For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This is a simple test program to measure the memcopy bandwidth of the GPU. It currently is capable of measuring device to device copy bandwidth, host to device and host to device copy bandwidth for pageable and page-locked memory, memory mapped and direct access.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Vector Addition For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

Element by element addition of two 1-dimensional arrays. Implemented in OpenCL for CUDA GPU's, with functional comparison against a simple C++ host CPU implementation.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Dot Product For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

Dot Product (scalar product) of set of input vector pairs. Implemented in OpenCL for CUDA GPU's, with functional comparison against a simple C++ host CPU implementation.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Matrix Vector Multiplication For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

Simple matrix-vector multiplication example showing increasingly optimized implementations.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Overlapped Copy/Compute Sample For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

Element by element hypotenuse for two 1-dimensional arrays. Implemented in OpenCL for CUDA GPU's, with functional comparison against a simple C++ host CPU implementation. Demonstrates overlapped copy/compute in 2 command queues
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Simple Multi-GPU For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This application demonstrates how to make use of multiple GPUs in OpenCL.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Simple OpenGL Interop For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

Simple program which demonstrates interoperability between OpenCL and OpenGL. The program modifies vertex positions with OpenCL and uses OpenGL to render the geometry.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Scan For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This example demonstrates an efficient OpenCL implementation of parallel prefix sum, also known as "scan". Given an array of numbers, scan computes a new array in which each element is the sum of all the elements before it in the input array.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Parallel Reduction For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

A parallel sum reduction that computes the sum of large arrays of values. This sample demonstrates several important optimization strategies for parallel algorithms like reduction.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Matrix Transpose For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

Efficient matrix transpose.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Matrix Multiplication For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This sample implements matrix multiplication and is exactly the same as Chapter 6 of the programming guide. It has been written for clarity of exposition to illustrate various OpenCL programming principles, not with the goal of providing the most performant generic kernel for matrix multiplication. CUBLAS provides high-performance matrix multiplication.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL 3D FDTD For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This sample applies a finite differences time domain progression stencil on a 3D surface.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL DCT 8x8 For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This sample demonstrates how Discrete Cosine Transform (DCT) for 8x8 blocks can be implemented in OpenCL.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL DirectX Texture Compressor (DXTC) For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

High Quality DXT Compression using OpenCL. This example shows how to implement an existing computationally-intensive CPU compression algorithm in parallel on the GPU, and obtain an order of magnitude performance improvement.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU



Whitepaper
Browse Files


OpenCL Radix Sort For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This sample demonstrates a very fast and efficient parallel radix sort implemented in OpenCL for CUDA GPUs.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Sorting Networks For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This sample implements bitonic sort algorithm for batches of short arrays
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Black-Scholes Option Pricing For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This sample evaluates fair call and put prices for a given set of European options by Black-Scholes formula.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU



Whitepaper
Browse Files


OpenCL Hidden Markov Model For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This sample implements a Hidden Markov Model in OpenCL for the GPU.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Quasirandom Generator For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This sample implements Niederreiter quasirandom number generator and Moro's Inverse Cumulative Normal Distribution generator.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Mersenne Twister For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This sample implements Mersenne Twister random number generator and Cartesian Box-Muller transformation on the GPU.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL 64-bin and 256-bin Histogram For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This sample demonstrates efficient implementation of 64-bin and 256-bin histograms.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU



Whitepaper
Browse Files


OpenCL Post-Process OpenGL-Rendered Image For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This sample shows how to post-process an image rendered in OpenGL using OpenCL.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Simple Texture 3D For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

Simple example that demonstrates use of 3D textures in OpenCL.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Box Filter For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

Linear 2-dimensional variable-width Box Filter of RGBA image. Implemented in OpenCL for CUDA GPU's, with performance comparison against simple C++ on host CPU. Each of the R, G, B and A channels are treated independently with results computed concurrently for each.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Sobel Filter For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

2-dimensional 3x3 Sobel Magnitude Filter of RGBA image. Implemented in OpenCL for CUDA GPU's, with performance comparison against simple C++ on host CPU. Gradient magnitude for each of the R, G & B channels is computed concurrently and independently, then combined into a single gradient intensity with linear weighting factors.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Median Filter For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

Multi-GPU enabled, 2-dimensional 3x3 Median Filter of RGBA image. Implemented in OpenCL for CUDA GPU's, with performance comparison against simple C++ on host CPU. Each of the R, G & B channels are treated independently with results computed concurrently for each.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Separable Convolution For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This sample implements convolution filter of a 2D image with arbitrary separable kernel.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Recursive Gaussian Filter For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

2-dimensional Gaussian Blur Filter of RGBA image using IRF method. Implemented in OpenCL for CUDA GPU's, with performance comparison against simple C++ on host CPU. Each of the R, G, B and A channels are treated independently with results computed concurrently for each.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Volume rendering For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

This sample demonstrates basic volume rendering using 3D textures.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL Particle Collision Simulation For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

Simulation of elastic collisions of a large # of bodies. Implemented in OpenCL for CUDA GPU's.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files


OpenCL N-Body Physics Simulation For a direct link to this sample, right-click and copy the URL (shortcut) of this link icon.

Gravitational Simulation of a large # of bodies. Implemented in OpenCL for CUDA GPU's.
  Minimum Required GPU
Minimum Required GPUor later
Minimum Required GPU




Browse Files

Last Update: 4/30/2011