Difference between revisions of "OpenCL"

From Lazarus wiki
Jump to navigationJump to search
m
(added more documentation links)
Line 2: Line 2:
  
 
[http://www.khronos.org/opencl/ Official site]
 
[http://www.khronos.org/opencl/ Official site]
 +
 +
[http://www.khronos.org/opencl/sdk/1.0/docs/man/xhtml/ Online Man pages on the official site]
  
 
[http://en.wikipedia.org/wiki/OpenCL Wikipedia OpenCL]
 
[http://en.wikipedia.org/wiki/OpenCL Wikipedia OpenCL]
 +
 +
[http://developer.apple.com/mac/library/documentation/Performance/Conceptual/OpenCL_MacProgGuide/Introduction/Introduction.html OpenCL at Apple Developer library]
  
  

Revision as of 17:00, 24 November 2009

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 heterogeneous platform. OpenCL provides parallel programming using both task-based and data-based parallelism.

Official site

Online Man pages on the official site

Wikipedia OpenCL

OpenCL at Apple Developer library


OpenCL headers can be downloaded from here

4th Jun 2009 Since there's no public library available, OpenCL headers cannot be included to FreePascal package as untested.