blob: dc5ef89473f1b1d67a1db8dab7b25f2d6ed36be4 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook MathML Module V1.1b1//EN"
"http://www.oasis-open.org/docbook/xml/mathml/1.1CR1/dbmathml.dtd">
<refentry>
<refentryinfo>
<keywordset>
<keyword>
clGetProgramInfo
</keyword>
</keywordset>
</refentryinfo>
<refmeta>
<refentrytitle>
clGetProgramInfo
</refentrytitle>
<refmiscinfo>
<copyright>
<year>2007-2009</year>
<holder>The Khronos Group Inc.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and/or associated documentation files (the
"Materials"), to deal in the Materials without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Materials, and to
permit persons to whom the Materials are furnished to do so, subject to
the condition that this copyright notice and permission notice shall be included
in all copies or substantial portions of the Materials.</holder>
</copyright>
</refmiscinfo>
<manvolnum>2</manvolnum>
</refmeta>
<!-- ================================ SYNOPSIS -->
<refnamediv id="clGetProgramInfo">
<refname>
clGetProgramInfo
</refname>
<refpurpose>
Returns information about the program object.
</refpurpose>
</refnamediv>
<refsynopsisdiv xmlns:xlink="http://www.w3.org/1999/xlink"><title></title>
<funcsynopsis>
<funcprototype>
<funcdef>
<link xlink:href="scalarDataTypes.html">cl_int</link>
<function>clGetProgramInfo</function>
</funcdef>
<paramdef><link xlink:href="abstractDataTypes.html">cl_program</link><parameter>program</parameter></paramdef>
<paramdef><link xlink:href="#cl_program_info">cl_program_info</link><parameter>param_name</parameter></paramdef>
<paramdef><link xlink:href="scalarDataTypes.html">size_t</link><parameter>param_value_size</parameter></paramdef>
<paramdef><link xlink:href="scalarDataTypes.html">void</link><parameter>*param_value</parameter></paramdef>
<paramdef><link xlink:href="scalarDataTypes.html">size_t</link><parameter>*param_value_size_ret</parameter></paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<!-- ================================ PARAMETERS -->
<refsect1 id="parameters">
<title>Parameters</title>
<variablelist>
<varlistentry>
<term>
<varname>
program
</varname>
</term>
<listitem>
<para>
Specifies the program object being queried.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<varname>
param_name
</varname>
</term>
<listitem>
<para>
Specifies the information to query. The list of supported <varname>param_name</varname> types and the information returned in <varname>param_value</varname> by <function>clGetProgramInfo</function> is described in the table below.
</para>
<informaltable frame="all"><anchor id="cl_program_info"/>
<tgroup cols="2" align="left" colsep="1" rowsep="1">
<colspec colname="col1" colnum="1" />
<colspec colname="col2" colnum="2" />
<thead>
<row>
<entry>cl_program_info</entry>
<entry>Return Type and Info. returned in <varname>param_value</varname></entry>
</row>
</thead>
<tbody>
<row>
<entry><constant>CL_PROGRAM_REFERENCE_COUNT</constant></entry>
<entry>Return type: cl_uint
<para>Return the <varname>program</varname> reference count.</para>
<para>The reference count returned should be considered immediately stale. It is unsuitable for general use in applications. This feature is provided for identifying memory leaks.</para>
</entry>
</row>
<row>
<entry><constant>CL_PROGRAM_CONTEXT</constant></entry>
<entry>Return type: cl_context
<para>
Return the context specified when the program object is created
</para></entry>
</row>
<row>
<entry><constant>CL_PROGRAM_NUM_DEVICES</constant></entry>
<entry>Return type: cl_uint
<para>Return the number of devices associated with <varname>program</varname>.
</para></entry>
</row>
<row>
<entry><constant>CL_PROGRAM_DEVICES</constant></entry>
<entry>Return type: cl_device_id[]
<para>Return the list of devices associated
with the program object. This can be
the devices associated with context on
which the program object has been
created or can be a subset of devices
that are specified when a progam object
is created using
<citerefentry><refentrytitle>clCreateProgramWithBinary</refentrytitle></citerefentry>.</para>
</entry>
</row>
<row>
<entry><constant>CL_PROGRAM_SOURCE</constant></entry>
<entry>Return type: char[]
<para>
Return the program source code specified by
<citerefentry><refentrytitle>clCreateProgramWithSource</refentrytitle></citerefentry>. The
source string returned is a
concatenation of all source strings
specified to
<citerefentry><refentrytitle>clCreateProgramWithSource</refentrytitle></citerefentry> with a
null terminator. The concatenation
strips any nulls in the original source
strings.
</para>
<para>
The actual number of characters that
represents the program source code
including the null terminator is returned
in <varname>param_value_size_ret</varname>.
</para>
</entry>
</row>
<row>
<entry><constant>CL_PROGRAM_BINARY_SIZES</constant></entry>
<entry>Return type: size_t[]
<para>Returns an array that contains the size
in bytes of the program binary for each
device associated with <varname>program</varname>. The
size of the array is the number of
devices associated with <varname>program</varname>. If a
binary is not available for a device(s),
a size of zero is returned.</para>
</entry>
</row>
<row>
<entry><constant>CL_PROGRAM_BINARIES</constant></entry>
<entry>Return type: unsigned char *[]
<para>
Return the program binaries for all
devices associated with <varname>program</varname>. For each device in <varname>program</varname>, the binary returned can be the binary specified for the device when <varname>program</varname> is created with <citerefentry><refentrytitle>clCreateProgramWithBinary</refentrytitle></citerefentry> or it can be the executable binary generated by <citerefentry><refentrytitle>clBuildProgram</refentrytitle></citerefentry>. If program is created with <citerefentry><refentrytitle>clCreateProgramWithSource</refentrytitle></citerefentry>, the binary returned is the binary generated by <citerefentry><refentrytitle>clBuildProgram</refentrytitle></citerefentry>. The bits returned can be an implementation-specific intermediate representation (a.k.a. IR) or device specific executable bits or both. The decision on which information is returned in the binary is up to the OpenCL implementation.
</para>
<para>
<varname>param_value</varname> points to an array of n
pointers where n is the number of
devices associated with program. The
buffer sizes needed to allocate the
memory that these n pointers refer to
can be queried using the
<constant>CL_PROGRAM_BINARY_SIZES</constant> query
as described in this table.
</para>
<para>
Each entry in this array is used by the
implementation as the location in
memory where to copy the program
binary for a specific device, if there is a
binary available. To find out which
device the program binary in the array
refers to, use the
<constant>CL_PROGRAM_DEVICES</constant> query to get
the list of devices. There is a one-to-one
correspondence between the array
of n pointers returned by
<constant>CL_PROGRAM_BINARIES</constant> and array of
devices returned by
<constant>CL_PROGRAM_DEVICES.</constant>
</para>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</listitem>
</varlistentry>
<varlistentry>
<term>
<varname>
param_value
</varname>
</term>
<listitem>
<para>
A pointer to memory where the appropriate result being queried is returned. If <varname>param_value</varname> is NULL, it is ignored.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<varname>
param_value_size
</varname>
</term>
<listitem>
<para>
Used to specify the size in bytes of memory pointed to by <varname>param_value</varname>.
This size must be greater than or equal to the size of return type as described in the table above.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<varname>
param_value_size_ret
</varname>
</term>
<listitem>
<para>
Returns the actual size in bytes of data copied to <varname>param_value</varname>. If <varname>param_value_size_ret</varname> is NULL, it is ignored.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<!-- ================================ NOTES -->
<!-- ================================ ERRORS -->
<refsect1 id="errors"><title>Errors</title>
<para>
<function>clGetProgramInfo</function> returns <errorname>CL_SUCCESS</errorname> if the function is executed successfully, returns
<errorname>CL_INVALID_VALUE</errorname> if <varname>param_name</varname> is not valid, or if size in bytes specified by
<varname>param_value_size</varname> is less than the size of return type as described in the table above and <varname>param_value</varname> is not
NULL, and returns <errorname>CL_INVALID_PROGRAM</errorname> if <varname>program</varname> is a not a valid program object.
</para>
</refsect1>
<!-- ================================ EXAMPLE -->
<!-- DO NOT DELETE IN CASE AN EXAMPLE IS ADDED IN THE FUTURE -->
<!--
<refsect2 id="example1">
<title>
Example
</title>
<informaltable frame="none">
<tgroup cols="1" align="left" colsep="0" rowsep="0">
<colspec colname="col1" colnum="1" />
<tbody>
<row>
<entry>
Example goes here - it will be set in "code" type with white space preserved.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</refsect2>
-->
<!-- ================================ SPECIFICATION -->
<!-- Set the "uri" attribute in the <olink /> element to the "named destination" for the PDF page
-->
<refsect1 id="specification"><title>Specification</title>
<para>
<imageobject>
<imagedata fileref="pdficon_small1.gif" format="gif" />
</imageobject>
<olink uri="clGetProgramInfo">OpenCL Specification</olink>
</para>
</refsect1>
<!-- ================================ ALSO SEE -->
<refsect1 id="seealso"><title>Also see</title>
<para>
<citerefentry><refentrytitle>clGetProgramBuildInfo</refentrytitle></citerefentry>
</para>
</refsect1>
<!-- ================================ COPYRIGHT -->
<!-- Content included from copyright.inc.xsl -->
<refsect3 id="Copyright"><title></title>
Copyright &copy;
</refsect3>
</refentry>