public final class KHRSPIR
extends java.lang.Object
This extension adds support to create an OpenCL program object from a Standard Portable Intermediate Representation (SPIR) instance. SPIR is a vendor neutral non-source representation for OpenCL C programs.
The compile option -x spir must be specified to indicate that the binary is in SPIR format, and the compile option -spir-std must be
used to specify the version of the SPIR specification that describes the format and meaning of the binary. For example, if the binary is as described
in SPIR version 1.2, then -spir-std=1.2 must be specified. Failing to specify these compile options may result in implementation defined
behavior.
| Modifier and Type | Field and Description |
|---|---|
static int |
CL_DEVICE_SPIR_VERSIONS
Accepted by
GetDeviceInfo. |
static int |
CL_PROGRAM_BINARY_TYPE_INTERMEDIATE
|
public static final int CL_DEVICE_SPIR_VERSIONS
GetDeviceInfo. Returns a space separated list of SPIR versions supported by the device. For example returning “1.2 2.0” in this
query implies that SPIR version 1.2 and 2.0 are supported by the implementation.public static final int CL_PROGRAM_BINARY_TYPE_INTERMEDIATE
GetProgramBuildInfo when param_name is PROGRAM_BINARY_TYPE.
An intermediate (non-source) representation for the program is loaded as a binary. The program must be further processed with CompileProgram or
BuildProgram. If processed with CompileProgram, the result will be a binary of type PROGRAM_BINARY_TYPE_COMPILED_OBJECT or
PROGRAM_BINARY_TYPE_LIBRARY. If processed with BuildProgram, the result will be a binary of type PROGRAM_BINARY_TYPE_EXECUTABLE.
Copyright LWJGL. All Rights Reserved. License terms.