Reputation: 297
I cannot find anything just explaining the syntax of the intermediate language. Does anybody know of any good documentation?
Upvotes: 1
Views: 192
Reputation: 8036
AFAIK, nothing called "OpenCL intermediate language" exists. There are vendor-specific intermediate languages used by some OpenCL implementations (such as NVIDIA's PTX and AMD's IL).
There is also the "Standard Portable Intermediate Representation" (SPIR) specification from Khronos which aims to be a cross-platform intermediate representation for OpenCL device code.
Upvotes: 3