Jump to content

OpenCL

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Anteru (talk | contribs) at 15:28, 13 December 2009 (→‎Example: Fix the "full open source implementation" link, also removing the unnecessary second reference to "Fitting FFT onto G80"). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

OpenCL
Original author(s)Apple Inc.
Developer(s)Khronos Group
Stable release
1.0 / December 8, 2008 (2008-12-08)
Operating systemCross-platform
TypeAPI
LicenseRoyalty Free
Websitewww.khronos.org/opencl

OpenCL (Open Computing Language) is a framework for writing programs that execute across heterogeneous platforms consisting of CPUs, GPUs, and other processors. OpenCL includes a language (based on C99) for writing kernels (functions that execute on OpenCL devices), plus APIs that are used to define and then control the platforms. OpenCL provides parallel computing using task-based and data-based parallelism.

OpenCL is analogous to the open industry standards OpenGL and OpenAL, for 3D graphics and computer audio, respectively. OpenCL extends the power of the GPU beyond graphics (GPGPU). OpenCL is managed by the non-profit technology consortium Khronos Group.

History

OpenCL was initially developed by Apple Inc., which holds trademark rights, and refined into an initial proposal in collaboration with technical teams at AMD, IBM, Intel, and Nvidia. Apple submitted this initial proposal to the Khronos Group. On June 16, 2008 the Khronos Compute Working Group was formed[1] with representatives from CPU, GPU, embedded-processor, and software companies. This group worked for five months to finish the technical details of the specification for OpenCL 1.0 by November 18, 2008.[2] This technical specification was reviewed by the Khronos members and approved for public release on December 8, 2008.[3]

OpenCL 1.0 has been released with Mac OS X v10.6 ("Snow Leopard"). According to an Apple press release:[4]

Snow Leopard further extends support for modern hardware with Open Computing Language (OpenCL), which lets any application tap into the vast gigaflops of GPU computing power previously available only to graphics applications. OpenCL is based on the C programming language and has been proposed as an open standard.

AMD has decided to support OpenCL (and DirectX 11) instead of the now deprecated Close to Metal in its Stream framework.[5][6] RapidMind announced their adoption of OpenCL underneath their development platform, in order to support GPUs from multiple vendors with one interface.[7] On December 9, 2008, Nvidia announced its intention to add full support for the OpenCL 1.0 specification to its GPU Computing Toolkit.[8]. On October 30, 2009, IBM released its first OpenCL implementation as a part of the XL compilers[9].

The OpenCL specification is under development at Khronos, which is open to any interested company to join.

Implementation

On December 10, 2008, AMD and Nvidia held the first public OpenCL demonstration, a 75-minute presentation at Siggraph Asia 2008. AMD showed a CPU-accelerated OpenCL demo explaining the scalability of OpenCL on one or more cores while Nvidia showed a GPU-accelerated demo.[10][11]

On March 26, 2009, at GDC 2009, AMD and Havok demonstrated the first working implementation for OpenCL accelerating Havok Cloth on AMD Radeon HD 4000 series GPU.[12]

On April 20, 2009, Nvidia announced the release of its OpenCL driver and SDK to developers participating in its OpenCL Early Access Program.[13]

On August 5, 2009, AMD unveiled the first development tools for its OpenCL platform as part of its ATI Stream SDK v2.0 Beta Program.[14]

On August 28, 2009, Apple released Mac OS X Snow Leopard, which contains a full implementation of OpenCL.[15] OpenCL in Snow Leopard will initially be supported on the ATI Radeon HD 4850, ATI Radeon HD 4870 and NVIDIA's Geforce 8600M GT, GeForce 8800 GS, GeForce 8800 GT, GeForce 8800 GTS, Geforce 9400M, GeForce 9600M GT, GeForce GT 120, GeForce GT 130, GeForce GTX 285, Quadro FX 4800, and Quadro FX 5600.[16]

On September 28, 2009, NVIDIA released its own OpenCL drivers and SDK implementation.

On October 13, 2009, AMD released the fourth beta of the ATI Stream SDK 2.0, which provides a complete OpenCL implementation on both R700/R800 GPUs and SSE3 capable CPUs. The SDK is available for both Linux and Windows. [17]

On November 26, 2009, NVIDIA released drivers for OpenCL 1.0 (rev 48).

The Apple[18], Nvidia[19], RapidMind[20] and Mesa Gallium3D[21] implementations of OpenCL are all based on the LLVM Compiler technology and use the Clang Compiler as its frontend.

On December 10, 2009, VIA released the first product supporting OpenCL 1.0 - ChromotionHD 2.0 video processor included in VN1000 chipset.[22]

Example

This example will compute a Fast Fourier Transformation (FFT): [23]

// create a compute context with GPU device
context = clCreateContextFromType(0, CL_DEVICE_TYPE_GPU, NULL, NULL, NULL);

// create a work-queue
queue = clCreateWorkQueue(context, NULL, NULL, 0);

// allocate the buffer memory objects
memobjs[0] = clCreateBuffer(context, CL_MEM_READ_ONLY | CL_MEM_COPY_HOST_PTR, sizeof(float)*2*num_entries, srcA);
memobjs[1] = clCreateBuffer(context, CL_MEM_READ_WRITE, sizeof(float)*2*num_entries, NULL);

// create the compute program
program = clCreateProgramFromSource(context, 1, &fft1D_1024_kernel_src, NULL);

// build the compute program executable
clBuildProgramExecutable(program, false, NULL, NULL);

// create the compute kernel
kernel = clCreateKernel(program, "fft1D_1024");

// create N-D range object with work-item dimensions
global_work_size[0] = num_entries;
local_work_size[0] = 64;
range = clCreateNDRangeContainer(context, 0, 1, global_work_size, local_work_size);

// set the args values
clSetKernelArg(kernel, 0, (void *)&memobjs[0], sizeof(cl_mem), NULL);
clSetKernelArg(kernel, 1, (void *)&memobjs[1], sizeof(cl_mem), NULL);
clSetKernelArg(kernel, 2, NULL, sizeof(float)*(local_work_size[0]+1)*16, NULL);
clSetKernelArg(kernel, 3, NULL, sizeof(float)*(local_work_size[0]+1)*16, NULL);

// execute kernel
clExecuteKernel(queue, kernel, NULL, range, NULL, 0, NULL);

The actual calculation: (Based on Fitting FFT onto the G80 Architecture)[24]

// This kernel computes FFT of length 1024. The 1024 length FFT is decomposed into 
// calls to a radix 16 function, another radix 16 function and then a radix 4 function 

__kernel void fft1D_1024 (__global float2 *in, __global float2 *out, 
                          __local float *sMemx, __local float *sMemy) { 
  int tid = get_local_id(0); 
  int blockIdx = get_group_id(0) * 1024 + tid; 
  float2 data[16]; 

  // starting index of data to/from global memory 
  in = in + blockIdx;  out = out + blockIdx; 
 
  globalLoads(data, in, 64); // coalesced global reads 
  fftRadix16Pass(data);      // in-place radix-16 pass 
  twiddleFactorMul(data, tid, 1024, 0); 

  // local shuffle using local memory 
  localShuffle(data, sMemx, sMemy, tid, (((tid & 15) * 65) + (tid >> 4))); 
  fftRadix16Pass(data);               // in-place radix-16 pass 
  twiddleFactorMul(data, tid, 64, 4); // twiddle factor multiplication 
 
  localShuffle(data, sMemx, sMemy, tid, (((tid >> 4) * 64) + (tid & 15))); 
 
  // four radix-4 function calls 
  fftRadix4Pass(data);      // radix-4 function number 1
  fftRadix4Pass(data + 4);  // radix-4 function number 2
  fftRadix4Pass(data + 8);  // radix-4 function number 3
  fftRadix4Pass(data + 12); // radix-4 function number 4

  // coalesced global writes 
  globalStores(data, out, 64); 
}

A full, open source implementation of an OpenCL FFT can be found on Apple's website[25]

See also

References

  1. ^ "Khronos Launches Heterogeneous Computing Initiative" (Press release). Khronos Group. 2008-06-16. Retrieved 2008-06-18.
  2. ^ "OpenCL gets touted in Texas". MacWorld. 2008-11-20. Retrieved 2009-06-12.
  3. ^ "The Khronos Group Releases OpenCL 1.0 Specification" (Press release). Khronos Group. 2008-12-08. Retrieved 2009-06-12.
  4. ^ "Apple Previews Mac OS X Snow Leopard to Developers" (Press release). Apple Inc. 2008-06-09. Retrieved 2008-06-09.
  5. ^ "AMD Drives Adoption of Industry Standards in GPGPU Software Development" (Press release). AMD. 2008-08-06. Retrieved 2008-08-14.
  6. ^ "AMD Backs OpenCL, Microsoft DirectX 11". eWeek. 2008-08-06. Retrieved 2008-08-14.
  7. ^ "HPCWire: RapidMind Embraces Open Source and Standards Projects". HPCWire. 2008-11-10. Retrieved 2008-11-11.
  8. ^ "NVIDIA Adds OpenCL To Its Industry Leading GPU Computing Toolkit" (Press release). Nvidia. 2008-12-09. Retrieved 2008-12-10.
  9. ^ "OpenCL Development Kit for Linux on Power". alphaWorks. 2009-10-30. Retrieved 2009-10-30.
  10. ^ "OpenCL Demo, AMD CPU". 2008-12-10. Retrieved 2009-03-28.
  11. ^ "OpenCL Demo, NVIDIA GPU". 2008-12-10. Retrieved 2009-03-28.
  12. ^ "AMD and Havok demo OpenCL accelerated physics". PC Perspective. 2009-03-26. Retrieved 2009-03-28.
  13. ^ "NVIDIA Releases OpenCL Driver To Developers". NVIDIA. 2009-04-20. Retrieved 2009-04-27.
  14. ^ "AMD does reverse GPGPU, announces OpenCL SDK for x86". Ars Technica. 2009-08-05. Retrieved 2009-08-06.
  15. ^ Dan Moren (2009-06-08). "Live Update: WWDC 2009 Keynote". macworld.com. MacWorld. Retrieved 2009-06-12. {{cite web}}: Unknown parameter |coauthors= ignored (|author= suggested) (help)
  16. ^ "Mac OS X Snow Leopard – Technical specifications and system requirements". Apple Inc. 2009-06-08. Retrieved 2009-08-25.
  17. ^ "ATI Stream Software Development Kit (SDK) v2.0 Beta Program". Retrieved 2009-10-14.
  18. ^ "Apple entry on LLVM Users page". Retrieved 2009-08-29.
  19. ^ "Nvidia entry on LLVM Users page". Retrieved 2009-08-06.
  20. ^ "Rapidmind entry on LLVM Users page". Retrieved 2009-10-01.
  21. ^ "Zack Rusin's blog post about the Mesa Gallium3D OpenCL implementation". Retrieved 2009-10-01.
  22. ^ http://www.via.com.tw/en/resources/pressroom/pressrelease.jsp?press_release_no=4327
  23. ^ "OpenCL" (PDF). SIGGRAPH2008. 2008-08-14. Retrieved 2008-08-14.
  24. ^ "Fitting FFT onto G80 Architecture" (PDF). Vasily Volkov and Brian Kazian, UC Berkeley CS258 project report. May 2008. Retrieved 2008-11-14.
  25. ^ . "OpenCL on FFT". Apple. 16 Nov 2009. Retrieved 2009-12-07.

External links