Kurt
Kurt

Reputation: 297

OpenCL intermediate language info?

I cannot find anything just explaining the syntax of the intermediate language. Does anybody know of any good documentation?

Upvotes: 1

Views: 192

Answers (1)

Kyle Lutz
Kyle Lutz

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

Related Questions