struct.BufferCmd.html 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="generator" content="rustdoc">
  7. <meta name="description" content="API documentation for the Rust `BufferCmd` struct in crate `ocl`.">
  8. <meta name="keywords" content="rust, rustlang, rust-lang, BufferCmd">
  9. <title>ocl::builders::BufferCmd - Rust</title>
  10. <link rel="stylesheet" type="text/css" href="../../normalize.css">
  11. <link rel="stylesheet" type="text/css" href="../../rustdoc.css" id="mainThemeStyle">
  12. <link rel="stylesheet" type="text/css" href="../../dark.css">
  13. <link rel="stylesheet" type="text/css" href="../../main.css" id="themeStyle">
  14. <script src="../../storage.js"></script>
  15. </head>
  16. <body class="rustdoc struct">
  17. <!--[if lte IE 8]>
  18. <div class="warning">
  19. This old browser is unsupported and will most likely display funky
  20. things.
  21. </div>
  22. <![endif]-->
  23. <nav class="sidebar">
  24. <div class="sidebar-menu">&#9776;</div>
  25. <p class='location'>Struct BufferCmd</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#methods">Methods</a><div class="sidebar-links"><a href="#method.read">read</a><a href="#method.write">write</a><a href="#method.map">map</a><a href="#method.copy">copy</a><a href="#method.copy_to_image">copy_to_image</a><a href="#method.gl_acquire">gl_acquire</a><a href="#method.gl_release">gl_release</a><a href="#method.fill">fill</a><a href="#method.queue">queue</a><a href="#method.block">block</a><a href="#method.offset">offset</a><a href="#method.rect">rect</a><a href="#method.ewait">ewait</a><a href="#method.enew">enew</a><a href="#method.enq">enq</a></div></div><p class='location'><a href='../index.html'>ocl</a>::<wbr><a href='index.html'>builders</a></p><script>window.sidebarCurrent = {name: 'BufferCmd', ty: 'struct', relpath: ''};</script><script defer src="sidebar-items.js"></script></div>
  26. </nav>
  27. <div class="theme-picker">
  28. <button id="theme-picker" aria-label="Pick another theme!">
  29. <img src="../../brush.svg" width="18" alt="Pick another theme!">
  30. </button>
  31. <div id="theme-choices"></div>
  32. </div>
  33. <script src="../../theme.js"></script>
  34. <nav class="sub">
  35. <form class="search-form js-only">
  36. <div class="search-container">
  37. <input class="search-input" name="search"
  38. autocomplete="off"
  39. placeholder="Click or press ‘S’ to search, ‘?’ for more options…"
  40. type="search">
  41. </div>
  42. </form>
  43. </nav>
  44. <section id='main' class="content">
  45. <h1 class='fqn'><span class='in-band'>Struct <a href='../index.html'>ocl</a>::<wbr><a href='index.html'>builders</a>::<wbr><a class="struct" href=''>BufferCmd</a></span><span class='out-of-band'><span id='render-detail'>
  46. <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
  47. [<span class='inner'>&#x2212;</span>]
  48. </a>
  49. </span><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#164-173' title='goto source code'>[src]</a></span></h1>
  50. <pre class='rust struct'><div class="docblock attributes">#[must_use = "commands do nothing unless enqueued"]
  51. </div>pub struct BufferCmd&lt;'c, T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: 'c + <a class="trait" href="../../ocl/traits/trait.OclPrm.html" title="trait ocl::traits::OclPrm">OclPrm</a>,&nbsp;</span> { /* fields omitted */ }</pre><div class='docblock'><p>A buffer command builder used to enqueue reads, writes, fills, and copies.</p>
  52. <p>Create one by using <code>Buffer::cmd</code> or with shortcut methods such as
  53. <code>Buffer::read</code> and <code>Buffer::write</code>.</p>
  54. <h2 id="examples" class="section-header"><a href="#examples">Examples</a></h2>
  55. <div class='information'><div class='tooltip ignore'>ⓘ<span class='tooltiptext'>This example is not tested</span></div></div><pre class="rust rust-example-rendered ignore">
  56. <span class="comment">// Copies one buffer to another:</span>
  57. <span class="ident">src_buffer</span>.<span class="ident">copy</span>(<span class="kw-2">&amp;</span><span class="ident">dst_buffer</span>, <span class="number">0</span>, <span class="ident">dst_buffer</span>.<span class="ident">len</span>()).<span class="ident">enq</span>().<span class="ident">unwrap</span>();
  58. <span class="comment">// Writes from a vector to an buffer, waiting on an event:</span>
  59. <span class="ident">buffer</span>.<span class="ident">write</span>(<span class="kw-2">&amp;</span><span class="ident">src_vec</span>).<span class="ident">ewait</span>(<span class="kw-2">&amp;</span><span class="ident">event</span>).<span class="ident">enq</span>().<span class="ident">unwrap</span>();
  60. <span class="comment">// Reads from a buffer into a vector, waiting on an event list and</span>
  61. <span class="comment">// filling a new empty event:</span>
  62. <span class="ident">buffer</span>.<span class="ident">read</span>(<span class="kw-2">&amp;</span><span class="ident">dst_vec</span>).<span class="ident">ewait</span>(<span class="kw-2">&amp;</span><span class="ident">event_list</span>).<span class="ident">enew</span>(<span class="kw-2">&amp;</span><span class="kw-2">mut</span> <span class="ident">empty_event</span>).<span class="ident">enq</span>().<span class="ident">unwrap</span>();
  63. <span class="comment">// Reads without blocking:</span>
  64. <span class="ident">buffer</span>.<span class="ident">read</span>(<span class="kw-2">&amp;</span><span class="ident">dst_vec</span>).<span class="ident">block</span>(<span class="bool-val">false</span>).<span class="ident">enew</span>(<span class="kw-2">&amp;</span><span class="kw-2">mut</span> <span class="ident">empty_event</span>).<span class="ident">enq</span>().<span class="ident">unwrap</span>();
  65. </pre>
  66. </div>
  67. <h2 id='methods' class='small-section-header'>
  68. Methods<a href='#methods' class='anchor'></a>
  69. </h2>
  70. <h3 id='impl' class='impl'><span class='in-band'><code>impl&lt;'c, T&gt; <a class="struct" href="../../ocl/builders/struct.BufferCmd.html" title="struct ocl::builders::BufferCmd">BufferCmd</a>&lt;'c, T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: 'c + <a class="trait" href="../../ocl/traits/trait.OclPrm.html" title="trait ocl::traits::OclPrm">OclPrm</a>,&nbsp;</span></code><a href='#impl' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#176-594' title='goto source code'>[src]</a></span></h3>
  71. <div class='docblock'><p>[UNSTABLE]: All methods still in a state of flux.</p>
  72. </div><div class='impl-items'><h4 id='method.read' class="method"><span id='read.v' class='invisible'><code>pub fn <a href='#method.read' class='fnname'>read</a>&lt;'d, R&gt;(self, dst_data: R) -&gt; <a class="struct" href="../../ocl/builders/struct.BufferReadCmd.html" title="struct ocl::builders::BufferReadCmd">BufferReadCmd</a>&lt;'c, 'd, T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;ReadDst&lt;'d, T&gt;&gt;,&nbsp;</span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#208-216' title='goto source code'>[src]</a></span></h4>
  73. <div class='docblock'><p>Specifies that this command will be a read operation.</p>
  74. <p>After calling this method, the blocking state of this command will
  75. be unchanged.</p>
  76. <h3 id="panics" class="section-header"><a href="#panics">Panics</a></h3>
  77. <p>The command operation kind must not have already been specified.</p>
  78. <h3 id="more-information" class="section-header"><a href="#more-information">More Information</a></h3>
  79. <p>See <a href="https://www.khronos.org/registry/OpenCL/sdk/1.2/docs/man/xhtml/clEnqueueReadBuffer.html">SDK</a> docs for more details.</p>
  80. </div><h4 id='method.write' class="method"><span id='write.v' class='invisible'><code>pub fn <a href='#method.write' class='fnname'>write</a>&lt;'d, W&gt;(self, src_data: W) -&gt; <a class="struct" href="../../ocl/builders/struct.BufferWriteCmd.html" title="struct ocl::builders::BufferWriteCmd">BufferWriteCmd</a>&lt;'c, 'd, T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;W: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;WriteSrc&lt;'d, T&gt;&gt;,&nbsp;</span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#229-237' title='goto source code'>[src]</a></span></h4>
  81. <div class='docblock'><p>Specifies that this command will be a write operation.</p>
  82. <h3 id="panics-1" class="section-header"><a href="#panics-1">Panics</a></h3>
  83. <p>The command operation kind must not have already been specified</p>
  84. <h3 id="more-information-1" class="section-header"><a href="#more-information-1">More Information</a></h3>
  85. <p>See <a href="https://www.khronos.org/registry/OpenCL/sdk/1.2/docs/man/xhtml/clEnqueueWriteBuffer.html">SDK</a> docs for more details.</p>
  86. </div><h4 id='method.map' class="method"><span id='map.v' class='invisible'><code>pub fn <a href='#method.map' class='fnname'>map</a>(self) -&gt; <a class="struct" href="../../ocl/builders/struct.BufferMapCmd.html" title="struct ocl::builders::BufferMapCmd">BufferMapCmd</a>&lt;'c, T&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#261-266' title='goto source code'>[src]</a></span></h4>
  87. <div class='docblock'><p>Specifies that this command will be a map operation.</p>
  88. <p>Enqueuing a map command will map a region of a buffer into the host
  89. address space and return a <a href="struct.MemMap.html"><code>MemMap</code></a> or <a href="async/struct.FutureMemMap.html"><code>FutureMemMap</code></a>, allowing
  90. access to this mapped region. Accessing memory via a <a href="struct.MemMap.html"><code>MemMap</code></a> is
  91. exactly like using a <a href="https://doc.rust-lang.org/std/primitive.slice.html">slice</a>.</p>
  92. <p>If <code>.block(..)</code> has been set it will be ignored. Non-blocking map
  93. commands are enqueued using <code>::enq_async</code>.</p>
  94. <h2 id="panics-2" class="section-header"><a href="#panics-2">Panics</a></h2>
  95. <p>The command operation kind must not have already been specified</p>
  96. <h3 id="more-information-2" class="section-header"><a href="#more-information-2">More Information</a></h3>
  97. <p>See <a href="https://www.khronos.org/registry/OpenCL/sdk/1.2/docs/man/xhtml/clEnqueueMapBuffer.html">SDK</a> docs for more details.</p>
  98. </div><h4 id='method.copy' class="method"><span id='copy.v' class='invisible'><code>pub fn <a href='#method.copy' class='fnname'>copy</a>&lt;'d, M&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;dst_buffer: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'d </a>M, <br>&nbsp;&nbsp;&nbsp;&nbsp;dst_offset: <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt;, <br>&nbsp;&nbsp;&nbsp;&nbsp;len: <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt;<br>) -&gt; <a class="struct" href="../../ocl/builders/struct.BufferCmd.html" title="struct ocl::builders::BufferCmd">BufferCmd</a>&lt;'c, T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;'d: 'c,<br>&nbsp;&nbsp;&nbsp;&nbsp;M: <a class="trait" href="../../ocl_core/types/abs/trait.AsMem.html" title="trait ocl_core::types::abs::AsMem">AsMem</a>&lt;T&gt;,&nbsp;</span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#289-300' title='goto source code'>[src]</a></span></h4>
  99. <div class='docblock'><p>Specifies that this command will be a copy operation.</p>
  100. <p>If <code>.block(..)</code> has been set it will be ignored.</p>
  101. <p><code>dst_offset</code> defaults to <code>0</code>, <code>len</code> defaults to the full length of the
  102. source buffer.</p>
  103. <h2 id="errors" class="section-header"><a href="#errors">Errors</a></h2>
  104. <p>If this is a rectangular copy, <code>dst_offset</code> and <code>len</code> must be None.</p>
  105. <h2 id="panics-3" class="section-header"><a href="#panics-3">Panics</a></h2>
  106. <p>The command operation kind must not have already been specified</p>
  107. <h3 id="more-information-3" class="section-header"><a href="#more-information-3">More Information</a></h3>
  108. <p>See <a href="https://www.khronos.org/registry/OpenCL/sdk/1.2/docs/man/xhtml/clEnqueueCopyBuffer.html">SDK</a> docs for more details.</p>
  109. </div><h4 id='method.copy_to_image' class="method"><span id='copy_to_image.v' class='invisible'><code>pub fn <a href='#method.copy_to_image' class='fnname'>copy_to_image</a>&lt;'d&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;image: &amp;'d <a class="struct" href="../../ocl_core/types/abs/struct.Mem.html" title="struct ocl_core::types::abs::Mem">MemCore</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;dst_origin: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 3]</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;region: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 3]</a><br>) -&gt; <a class="struct" href="../../ocl/builders/struct.BufferCmd.html" title="struct ocl::builders::BufferCmd">BufferCmd</a>&lt;'c, T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;'d: 'c,&nbsp;</span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#310-317' title='goto source code'>[src]</a></span></h4>
  110. <div class='docblock'><p>Specifies that this command will be a copy to image operation.</p>
  111. <p>If <code>.block(..)</code> has been set it will be ignored.</p>
  112. <h2 id="panics-4" class="section-header"><a href="#panics-4">Panics</a></h2>
  113. <p>The command operation kind must not have already been specified</p>
  114. </div><h4 id='method.gl_acquire' class="method"><span id='gl_acquire.v' class='invisible'><code>pub fn <a href='#method.gl_acquire' class='fnname'>gl_acquire</a>(self) -&gt; <a class="struct" href="../../ocl/builders/struct.BufferCmd.html" title="struct ocl::builders::BufferCmd">BufferCmd</a>&lt;'c, T&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#327-332' title='goto source code'>[src]</a></span></h4>
  115. <div class='docblock'><p>Specifies that this command will acquire a GL buffer.</p>
  116. <p>If <code>.block(..)</code> has been set it will be ignored.</p>
  117. <h2 id="panics-5" class="section-header"><a href="#panics-5">Panics</a></h2>
  118. <p>The command operation kind must not have already been specified</p>
  119. </div><h4 id='method.gl_release' class="method"><span id='gl_release.v' class='invisible'><code>pub fn <a href='#method.gl_release' class='fnname'>gl_release</a>(self) -&gt; <a class="struct" href="../../ocl/builders/struct.BufferCmd.html" title="struct ocl::builders::BufferCmd">BufferCmd</a>&lt;'c, T&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#342-347' title='goto source code'>[src]</a></span></h4>
  120. <div class='docblock'><p>Specifies that this command will release a GL buffer.</p>
  121. <p>If <code>.block(..)</code> has been set it will be ignored.</p>
  122. <h2 id="panics-6" class="section-header"><a href="#panics-6">Panics</a></h2>
  123. <p>The command operation kind must not have already been specified</p>
  124. </div><h4 id='method.fill' class="method"><span id='fill.v' class='invisible'><code>pub fn <a href='#method.fill' class='fnname'>fill</a>(self, pattern: T, len: <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt;) -&gt; <a class="struct" href="../../ocl/builders/struct.BufferCmd.html" title="struct ocl::builders::BufferCmd">BufferCmd</a>&lt;'c, T&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#366-371' title='goto source code'>[src]</a></span></h4>
  125. <div class='docblock'><p>Specifies that this command will be a fill operation.</p>
  126. <p>If <code>.block(..)</code> has been set it will be ignored.</p>
  127. <p><code>pattern</code> is the vector or scalar value to repeat contiguously. <code>len</code>
  128. is the overall size expressed in units of sizeof(T) If <code>len</code> is <code>None</code>,
  129. the pattern will fill the entire buffer, otherwise, <code>len</code> must be
  130. divisible by sizeof(<code>pattern</code>).</p>
  131. <p>As an example if you want to fill the first 100 <code>cl_float4</code> sized
  132. elements of a buffer, <code>pattern</code> would be a <code>cl_float4</code> and <code>len</code> would
  133. be 400.</p>
  134. <h2 id="panics-7" class="section-header"><a href="#panics-7">Panics</a></h2>
  135. <p>The command operation kind must not have already been specified</p>
  136. </div><h4 id='method.queue' class="method"><span id='queue.v' class='invisible'><code>pub fn <a href='#method.queue' class='fnname'>queue</a>(self, queue: &amp;'c <a class="struct" href="../../ocl/struct.Queue.html" title="struct ocl::Queue">Queue</a>) -&gt; <a class="struct" href="../../ocl/builders/struct.BufferCmd.html" title="struct ocl::builders::BufferCmd">BufferCmd</a>&lt;'c, T&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#378-381' title='goto source code'>[src]</a></span></h4>
  137. <div class='docblock'><p>Specifies a queue to use for this call only.</p>
  138. <p>Overrides the buffer's default queue if one is set. If no default
  139. queue is set, this method <strong>must</strong> be called before enqueuing the
  140. command.</p>
  141. </div><h4 id='method.block' class="method"><span id='block.v' class='invisible'><code>pub unsafe fn <a href='#method.block' class='fnname'>block</a>(self, block: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>) -&gt; <a class="struct" href="../../ocl/builders/struct.BufferCmd.html" title="struct ocl::builders::BufferCmd">BufferCmd</a>&lt;'c, T&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#406-409' title='goto source code'>[src]</a></span></h4>
  142. <div class='docblock'><p>Specifies whether or not to block the current thread until completion.</p>
  143. <p>Ignored if this is not a read or write operation.</p>
  144. <p>Default is <code>block = true</code>.</p>
  145. <h2 id="safety" class="section-header"><a href="#safety">Safety</a></h2>
  146. <p>When performing non-blocking reads or writes, the caller must ensure
  147. that the data being read from or written to is not accessed improperly
  148. until the command completes. Use events (<code>Event::wait_for</code>) or the
  149. command queue (<code>Queue::finish</code>) to synchronize.</p>
  150. <p>If possible, prefer instead to use <a href="builders/struct.BufferMapCmd.html"><code>::map</code></a> with <a href="builders/struct.BufferMapCmd.html#method.enq_async"><code>::enq_async</code></a> for
  151. optimal performance and data integrity.</p>
  152. </div><h4 id='method.offset' class="method"><span id='offset.v' class='invisible'><code>pub fn <a href='#method.offset' class='fnname'>offset</a>(self, offset: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../../ocl/builders/struct.BufferCmd.html" title="struct ocl::builders::BufferCmd">BufferCmd</a>&lt;'c, T&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#417-424' title='goto source code'>[src]</a></span></h4>
  153. <div class='docblock'><p>Sets the linear offset for an operation.</p>
  154. <h2 id="panics-8" class="section-header"><a href="#panics-8">Panics</a></h2>
  155. <p>The 'shape' may not have already been set to rectangular by the
  156. <code>::rect</code> function.</p>
  157. </div><h4 id='method.rect' class="method"><span id='rect.v' class='invisible'><code>pub fn <a href='#method.rect' class='fnname'>rect</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;src_origin: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 3]</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;dst_origin: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 3]</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;region: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 3]</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;src_row_pitch_bytes: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;src_slc_pitch_bytes: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;dst_row_pitch_bytes: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;dst_slc_pitch_bytes: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a><br>) -&gt; <a class="struct" href="../../ocl/builders/struct.BufferCmd.html" title="struct ocl::builders::BufferCmd">BufferCmd</a>&lt;'c, T&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#433-445' title='goto source code'>[src]</a></span></h4>
  158. <div class='docblock'><p>Specifies that this will be a rectangularly shaped operation
  159. (the default being linear).</p>
  160. <p>Row and slice pitches must all be expressed in bytes.</p>
  161. <p>Only valid for 'read', 'write', and 'copy' modes. Will error if used
  162. with any other mode.</p>
  163. </div><h4 id='method.ewait' class="method"><span id='ewait.v' class='invisible'><code>pub fn <a href='#method.ewait' class='fnname'>ewait</a>&lt;'e, Ewl&gt;(self, ewait: Ewl) -&gt; <a class="struct" href="../../ocl/builders/struct.BufferCmd.html" title="struct ocl::builders::BufferCmd">BufferCmd</a>&lt;'c, T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;'e: 'c,<br>&nbsp;&nbsp;&nbsp;&nbsp;Ewl: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../../ocl/builders/enum.ClWaitListPtrEnum.html" title="enum ocl::builders::ClWaitListPtrEnum">ClWaitListPtrEnum</a>&lt;'e&gt;&gt;,&nbsp;</span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#475-479' title='goto source code'>[src]</a></span></h4>
  164. <div class='docblock'><p>Specifies an event or list of events to wait on before the command
  165. will run.</p>
  166. <p>When events generated using the <code>::enew</code> method of <strong>other</strong>,
  167. previously enqueued commands are passed here (either individually or
  168. as part of an <a href="struct.EventList.html"><code>EventList</code></a>), this command will not execute until
  169. those commands have completed.</p>
  170. <p>Using events can compliment the use of queues to order commands by
  171. creating temporal dependencies between them (where commands in one
  172. queue must wait for the completion of commands in another). Events can
  173. also supplant queues altogether when, for example, using out-of-order
  174. queues.</p>
  175. <h1 id="example" class="section-header"><a href="#example">Example</a></h1>
  176. <div class='information'><div class='tooltip ignore'>ⓘ<span class='tooltiptext'>This example is not tested</span></div></div><pre class="rust rust-example-rendered ignore">
  177. <span class="comment">// Create an event list:</span>
  178. <span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">event_list</span> <span class="op">=</span> <span class="ident">EventList</span>::<span class="ident">new</span>();
  179. <span class="comment">// Enqueue a kernel on `queue_1`, creating an event representing the kernel</span>
  180. <span class="comment">// command in our list:</span>
  181. <span class="ident">kernel</span>.<span class="ident">cmd</span>().<span class="ident">queue</span>(<span class="kw-2">&amp;</span><span class="ident">queue_1</span>).<span class="ident">enew</span>(<span class="kw-2">&amp;</span><span class="kw-2">mut</span> <span class="ident">event_list</span>).<span class="ident">enq</span>()<span class="question-mark">?</span>;
  182. <span class="comment">// Read from a buffer using `queue_2`, ensuring the read does not begin until</span>
  183. <span class="comment">// after the kernel command has completed:</span>
  184. <span class="ident">buffer</span>.<span class="ident">read</span>(<span class="ident">rwvec</span>.<span class="ident">clone</span>()).<span class="ident">queue</span>(<span class="kw-2">&amp;</span><span class="ident">queue_2</span>).<span class="ident">ewait</span>(<span class="kw-2">&amp;</span><span class="ident">event_list</span>).<span class="ident">enq_async</span>()<span class="question-mark">?</span>;</pre>
  185. </div><h4 id='method.enew' class="method"><span id='enew.v' class='invisible'><code>pub fn <a href='#method.enew' class='fnname'>enew</a>&lt;'e, En&gt;(self, enew: En) -&gt; <a class="struct" href="../../ocl/builders/struct.BufferCmd.html" title="struct ocl::builders::BufferCmd">BufferCmd</a>&lt;'c, T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;'e: 'c,<br>&nbsp;&nbsp;&nbsp;&nbsp;En: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../../ocl/builders/enum.ClNullEventPtrEnum.html" title="enum ocl::builders::ClNullEventPtrEnum">ClNullEventPtrEnum</a>&lt;'e&gt;&gt;,&nbsp;</span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#512-516' title='goto source code'>[src]</a></span></h4>
  186. <div class='docblock'><p>Specifies the destination to store a new, optionally created event
  187. associated with this command.</p>
  188. <p>The destination can be a mutable reference to an empty event (created
  189. using <a href="struct.Event.html#method.empty"><code>Event::empty</code></a>) or a mutable reference to an event list.</p>
  190. <p>After this command is enqueued, the event in the destination can be
  191. passed to the <code>::ewait</code> method of another command. Doing so will cause
  192. the other command to wait until this command has completed before
  193. executing.</p>
  194. <p>Using events can compliment the use of queues to order commands by
  195. creating temporal dependencies between them (where commands in one
  196. queue must wait for the completion of commands in another). Events can
  197. also supplant queues altogether when, for example, using out-of-order
  198. queues.</p>
  199. <h1 id="example-1" class="section-header"><a href="#example-1">Example</a></h1>
  200. <div class='information'><div class='tooltip ignore'>ⓘ<span class='tooltiptext'>This example is not tested</span></div></div><pre class="rust rust-example-rendered ignore">
  201. <span class="comment">// Create an event list:</span>
  202. <span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">event</span> <span class="op">=</span> <span class="ident">Event</span>::<span class="ident">empty</span>();
  203. <span class="comment">// Enqueue a kernel on `queue_1`, creating an event representing the kernel</span>
  204. <span class="comment">// command in our list:</span>
  205. <span class="ident">kernel</span>.<span class="ident">cmd</span>().<span class="ident">queue</span>(<span class="kw-2">&amp;</span><span class="ident">queue_1</span>).<span class="ident">enew</span>(<span class="kw-2">&amp;</span><span class="kw-2">mut</span> <span class="ident">event</span>).<span class="ident">enq</span>()<span class="question-mark">?</span>;
  206. <span class="comment">// Read from a buffer using `queue_2`, ensuring the read does not begin until</span>
  207. <span class="comment">// after the kernel command has completed:</span>
  208. <span class="ident">buffer</span>.<span class="ident">read</span>(<span class="ident">rwvec</span>.<span class="ident">clone</span>()).<span class="ident">queue</span>(<span class="kw-2">&amp;</span><span class="ident">queue_2</span>).<span class="ident">ewait</span>(<span class="kw-2">&amp;</span><span class="ident">event</span>).<span class="ident">enq_async</span>()<span class="question-mark">?</span>;</pre>
  209. </div><h4 id='method.enq' class="method"><span id='enq.v' class='invisible'><code>pub fn <a href='#method.enq' class='fnname'>enq</a>(self) -&gt; <a class="type" href="../../ocl/error/type.Result.html" title="type ocl::error::Result">OclResult</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#519-593' title='goto source code'>[src]</a></span></h4>
  210. <div class='docblock'><p>Enqueues this command.</p>
  211. </div></div></section>
  212. <section id='search' class="content hidden"></section>
  213. <section class="footer"></section>
  214. <aside id="help" class="hidden">
  215. <div>
  216. <h1 class="hidden">Help</h1>
  217. <div class="shortcuts">
  218. <h2>Keyboard Shortcuts</h2>
  219. <dl>
  220. <dt><kbd>?</kbd></dt>
  221. <dd>Show this help dialog</dd>
  222. <dt><kbd>S</kbd></dt>
  223. <dd>Focus the search field</dd>
  224. <dt><kbd>↑</kbd></dt>
  225. <dd>Move up in search results</dd>
  226. <dt><kbd>↓</kbd></dt>
  227. <dd>Move down in search results</dd>
  228. <dt><kbd>↹</kbd></dt>
  229. <dd>Switch tab</dd>
  230. <dt><kbd>&#9166;</kbd></dt>
  231. <dd>Go to active search result</dd>
  232. <dt><kbd>+</kbd></dt>
  233. <dd>Expand all sections</dd>
  234. <dt><kbd>-</kbd></dt>
  235. <dd>Collapse all sections</dd>
  236. </dl>
  237. </div>
  238. <div class="infos">
  239. <h2>Search Tricks</h2>
  240. <p>
  241. Prefix searches with a type followed by a colon (e.g.
  242. <code>fn:</code>) to restrict the search to a given type.
  243. </p>
  244. <p>
  245. Accepted types are: <code>fn</code>, <code>mod</code>,
  246. <code>struct</code>, <code>enum</code>,
  247. <code>trait</code>, <code>type</code>, <code>macro</code>,
  248. and <code>const</code>.
  249. </p>
  250. <p>
  251. Search functions by type signature (e.g.
  252. <code>vec -> usize</code> or <code>* -> vec</code>)
  253. </p>
  254. </div>
  255. </div>
  256. </aside>
  257. <script>
  258. window.rootPath = "../../";
  259. window.currentCrate = "ocl";
  260. </script>
  261. <script src="../../main.js"></script>
  262. <script defer src="../../search-index.js"></script>
  263. </body>
  264. </html>