| <?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> |
| vloadn |
| </keyword> |
| </keywordset> |
| </refentryinfo> |
| |
| <refmeta> |
| <refentrytitle>vloadn</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="vloadn"> |
| <refname>vload<replaceable>n</replaceable></refname> |
| |
| <refpurpose> |
| Read vectors from a pointer to memory. |
| </refpurpose> |
| </refnamediv> |
| |
| <refsynopsisdiv xmlns:xlink="http://www.w3.org/1999/xlink"><title></title> |
| <funcsynopsis> |
| <funcprototype> |
| <funcdef> |
| gentype<replaceable>n</replaceable> |
| <function> |
| vload<replaceable>n</replaceable> |
| </function> |
| </funcdef> <paramdef><link xlink:href="scalarDataTypes.html">size_t</link><replaceable>n</replaceable><parameter>offset</parameter></paramdef> |
| <paramdef>const <link xlink:href="global.html">__global</link> gentype<parameter>*p</parameter></paramdef> |
| </funcprototype> |
| </funcsynopsis> |
| |
| <funcsynopsis> |
| <funcprototype> |
| <funcdef> |
| gentype<replaceable>n</replaceable> |
| <function> |
| vload<replaceable>n</replaceable> |
| </function> |
| </funcdef> <paramdef><link xlink:href="scalarDataTypes.html">size_t</link><parameter>offset</parameter></paramdef> |
| <paramdef>const <link xlink:href="local.html">__local</link> gentype<parameter>*p</parameter></paramdef> |
| </funcprototype> |
| </funcsynopsis> |
| |
| <funcsynopsis> |
| <funcprototype> |
| <funcdef> |
| gentype<replaceable>n</replaceable> |
| <function> |
| vload<replaceable>n</replaceable> |
| </function> |
| </funcdef> <paramdef><link xlink:href="scalarDataTypes.html">size_t</link><parameter>offset</parameter></paramdef> |
| <paramdef>const <link xlink:href="constant.html">__constant</link> gentype<parameter>*p</parameter></paramdef> |
| </funcprototype> |
| </funcsynopsis> |
| |
| <funcsynopsis> |
| <funcprototype> |
| <funcdef> |
| gentype<replaceable>n</replaceable> |
| <function> |
| vload<replaceable>n</replaceable> |
| </function> |
| </funcdef> <paramdef><link xlink:href="scalarDataTypes.html">size_t</link><parameter>offset</parameter></paramdef> |
| <paramdef>const <citerefentry href="private"><refentrytitle>__private</refentrytitle></citerefentry> gentype<parameter>*p</parameter></paramdef> |
| </funcprototype> |
| </funcsynopsis> |
| </refsynopsisdiv> |
| |
| |
| <!-- ================================ DESCRIPTION --> |
| |
| <refsect1 id="description"><title>Description</title> |
| <para> |
| Return sizeof (<type>gentype<replaceable>n</replaceable></type>) bytes of data read from location (<varname>p</varname> + (<varname>offset</varname> * <varname>n</varname>)). |
| <para> |
| </para> |
| The read address computed as (<varname>p</varname> + (<varname>offset</varname> * <varname>n</varname>)) must be 8-bit aligned if <type>gentype</type> is <type>char<replaceable>n</replaceable></type>, <type>uchar<replaceable>n</replaceable></type>; 16-bit aligned if <type>gentype</type> is <type>short<replaceable>n</replaceable></type>, <type>ushort<replaceable>n</replaceable></type>; 32-bit aligned if gentype is <type>int<replaceable>n</replaceable></type>, <type>uint<replaceable>n</replaceable></type>, <type>float<replaceable>n</replaceable></type>; 64-bit aligned if <type>gentype</type> is <type>long<replaceable>n</replaceable></type>, <type>ulong<replaceable>n</replaceable></type>. |
| </para> |
| <para> |
| If the <type>double</type> extension is enabled, then in addition to the above the read address must be 64-bit aligned if <type>gentype</type> is <type>long<replaceable>n</replaceable></type>, <type>ulong<replaceable>n</replaceable></type>, or <type>double<replaceable>n</replaceable></type>. |
| </para> |
| <para> |
| If the <type>half</type> extension is enabled, the read address computed as (<varname>p</varname> + (<varname>offset</varname> * <varname>n</varname>) must be 16-bit aligned. |
| </para> |
| |
| |
| </refsect1> |
| |
| <!-- ================================ NOTES --> |
| |
| <refsect1 id="notes"><title>Notes</title> |
| <para> |
| The generic type <type>gentype</type> is used to indicate the built-in data types |
| <type>char</type>, <type>uchar</type>, <type>short</type>, <type>ushort</type>, <type>int</type>, <type>uint</type>, <type>long</type>, <type>ulong</type>, or <type>float</type>. |
| </para> |
| <para> |
| The generic type name <type>gentype<replaceable>n</replaceable></type> is used to indicate the built-in data types <type>char{2|4|8|16}</type>, |
| <type>uchar{2|4|8|16}</type>, <type>short{2|4|8|16}</type>, <type>ushort{2|4|8|16}</type>, |
| <type>int{2|4|8|16}</type>, <type>uint{2|4|8|16}</type>, <type>long{2|4|8|16}</type>, <type>ulong{2|4|8|16}</type>, or <type>float{2|4|8|16}</type> as the type for the arguments unless otherwise stated. The suffix used in gentype<emphasis>n</emphasis> or the function name (i.e. <function>vload<emphasis>n</emphasis></function>, <function>vstore<emphasis>n</emphasis></function>, etc.) represents the number of elements in the built-in vector type (<emphasis>n</emphasis> = 2, 4, 8, or 16). |
| </para> |
| <para> |
| If the <type>double</type> extension is enabled with <citerefentry><refentrytitle>cl_khr_fp64</refentrytitle></citerefentry>, the vector data load (<function>vload<emphasis>n</emphasis></function>) and store (<function>vstore<emphasis>n</emphasis></function>) functions are extended to include versions that read from or write to double scalar or vector values. The generic type <type>gentype</type> is extended to include double and the generic type <type>gentype<replaceable>n</replaceable></type> is extended to include <type>double{2|4|8|16}</type> as arguments and return values. |
| </para> |
| <para> |
| If the <type>half</type> extension is enabled with <citerefentry><refentrytitle>cl_khr_fp16</refentrytitle></citerefentry>, the vector data load (<function>vload<emphasis>n</emphasis></function>) and store (<function>vstore<emphasis>n</emphasis></function>) functions are extended to include versions that read from or write to half scalar or vector values. The generic type <type>gentype</type> is extended to include <type>half</type> and the generic type <type>gentype<replaceable>n</replaceable></type> is extended to include <type>half{2|4|8|16}</type> as arguments and return values. |
| </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="vectorDataLoadandStoreFunctions">OpenCL Specification</olink> |
| </para> |
| </refsect1> |
| |
| |
| <!-- ================================ ALSO SEE --> |
| |
| <refsect1 id="seealso"><title>Also see</title> |
| <para> |
| <citerefentry href="vectorDataLoadandStoreFunctions"><refentrytitle>Vector Data Load and Store Functions</refentrytitle></citerefentry> |
| </para> |
| </refsect1> |
| |
| |
| |
| <!-- ============================== COPYRIGHT --> |
| <!-- Content included from copyright.inc.xsl --> |
| |
| <refsect3 id="Copyright"><title></title> |
| <imageobject> |
| <imagedata fileref="KhronosLogo.jpg" format="jpg" /> |
| </imageobject> |
| <para /> |
| </refsect3> |
| |
| </refentry> |
| |