struct.BufferMapCmd.html 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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 `BufferMapCmd` struct in crate `ocl`.">
  8. <meta name="keywords" content="rust, rustlang, rust-lang, BufferMapCmd">
  9. <title>ocl::builders::BufferMapCmd - 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 BufferMapCmd</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#methods">Methods</a><div class="sidebar-links"><a href="#method.flags">flags</a><a href="#method.read">read</a><a href="#method.write">write</a><a href="#method.write_invalidate">write_invalidate</a><a href="#method.len">len</a><a href="#method.queue">queue</a><a href="#method.offset">offset</a><a href="#method.ewait">ewait</a><a href="#method.enew">enew</a><a href="#method.enq">enq</a><a href="#method.enq_async">enq_async</a></div></div><p class='location'><a href='../index.html'>ocl</a>::<wbr><a href='index.html'>builders</a></p><script>window.sidebarCurrent = {name: 'BufferMapCmd', 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=''>BufferMapCmd</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#1393-1397' 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 BufferMapCmd&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 command builder used to enqueue a map command.</p>
  52. <p>Enqueuing a map command will map a region of a buffer into the host
  53. 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 access
  54. to this mapped region. Accessing memory via a <a href="struct.MemMap.html"><code>MemMap</code></a> is exactly like
  55. using a <a href="https://doc.rust-lang.org/std/primitive.slice.html">slice</a>.</p>
  56. <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>
  57. </div>
  58. <h2 id='methods' class='small-section-header'>
  59. Methods<a href='#methods' class='anchor'></a>
  60. </h2>
  61. <h3 id='impl' class='impl'><span class='in-band'><code>impl&lt;'c, T&gt; <a class="struct" href="../../ocl/builders/struct.BufferMapCmd.html" title="struct ocl::builders::BufferMapCmd">BufferMapCmd</a>&lt;'c, T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <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#1399-1649' title='goto source code'>[src]</a></span></h3>
  62. <div class='impl-items'><h4 id='method.flags' class="method"><span id='flags.v' class='invisible'><code>pub fn <a href='#method.flags' class='fnname'>flags</a>(self, flags: <a class="struct" href="../../ocl/flags/struct.MapFlags.html" title="struct ocl::flags::MapFlags">MapFlags</a>) -&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#1413-1416' title='goto source code'>[src]</a></span></h4>
  63. <div class='docblock'><p>Specifies the flags to be used for this map command.</p>
  64. <p>Flags can also be specified using the <code>::read</code>, <code>::write</code>, and
  65. <code>::write_invalidate</code> methods instead.</p>
  66. <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>
  67. </div><h4 id='method.read' class="method"><span id='read.v' class='invisible'><code>pub fn <a href='#method.read' class='fnname'>read</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#1425-1428' title='goto source code'>[src]</a></span></h4>
  68. <div class='docblock'><p>Specifies that the memory object is being mapped for reading.</p>
  69. <p>Sets the flag to be used for this map command to <code>[CL_]MAP_READ</code>.</p>
  70. <p>This is the fastest way to move data from device to host for many use
  71. cases when used with buffers created with the <code>MEM_ALLOC_HOST_PTR</code> or
  72. <code>MEM_USE_HOST_PTR</code> flags.</p>
  73. </div><h4 id='method.write' class="method"><span id='write.v' class='invisible'><code>pub fn <a href='#method.write' class='fnname'>write</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#1441-1444' title='goto source code'>[src]</a></span></h4>
  74. <div class='docblock'><p>Specifies that the memory object is being mapped for writing.</p>
  75. <p>Sets the flag to be used for this map command to <code>[CL_]MAP_WRITE</code>.</p>
  76. <p>This is not the most efficient method of transferring data from host
  77. to device due to the memory being synchronized beforehand. Prefer
  78. <code>::write_invalidate</code> unless you need the memory region to be updated
  79. (e.g. if you are only writing to particular portions of the data, and
  80. will not be overwriting the entire contents, etc.). Use this with
  81. buffers created with the <code>MEM_ALLOC_HOST_PTR</code> or <code>MEM_USE_HOST_PTR</code>
  82. flags for best performance.</p>
  83. </div><h4 id='method.write_invalidate' class="method"><span id='write_invalidate.v' class='invisible'><code>pub fn <a href='#method.write_invalidate' class='fnname'>write_invalidate</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#1459-1462' title='goto source code'>[src]</a></span></h4>
  84. <div class='docblock'><p>Specifies that the memory object is being mapped for writing and that
  85. the local (host) memory region may contain stale data that must be
  86. completely overwritten before unmapping.</p>
  87. <p>Sets the flag to be used for this map command to
  88. <code>[CL_]MAP_WRITE_INVALIDATE_REGION</code>.</p>
  89. <p>This option may provide a substantial performance improvement when
  90. writing and is the fastest method for moving data in bulk from host to
  91. device memory when used with buffers created with the
  92. <code>MEM_ALLOC_HOST_PTR</code> or <code>MEM_USE_HOST_PTR</code> flags. Only use this when
  93. you will be overwriting the entire contents of the mapped region
  94. otherwise you will send stale or junk data to the device.</p>
  95. </div><h4 id='method.len' class="method"><span id='len.v' class='invisible'><code>pub fn <a href='#method.len' class='fnname'>len</a>(self, len: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&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#1470-1473' title='goto source code'>[src]</a></span></h4>
  96. <div class='docblock'><p>Specifies the length of the region to map.</p>
  97. <p>If unspecified the entire buffer will be mapped.</p>
  98. </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.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#1480-1483' title='goto source code'>[src]</a></span></h4>
  99. <div class='docblock'><p>Specifies a queue to use for this call only.</p>
  100. <p>Overrides the buffer's default queue if one is set. If no default
  101. queue is set, this method <strong>must</strong> be called before enqueuing the
  102. command.</p>
  103. </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.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#1491-1493' title='goto source code'>[src]</a></span></h4>
  104. <div class='docblock'><p>Sets the linear offset for an operation.</p>
  105. <h2 id="panics" class="section-header"><a href="#panics">Panics</a></h2>
  106. <p>The 'shape' may not have already been set to rectangular by the
  107. <code>::rect</code> function.</p>
  108. </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.BufferMapCmd.html" title="struct ocl::builders::BufferMapCmd">BufferMapCmd</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#1523-1527' title='goto source code'>[src]</a></span></h4>
  109. <div class='docblock'><p>Specifies an event or list of events to wait on before the command
  110. will run.</p>
  111. <p>When events generated using the <code>::enew</code> method of <strong>other</strong>,
  112. previously enqueued commands are passed here (either individually or
  113. as part of an <a href="struct.EventList.html"><code>EventList</code></a>), this command will not execute until
  114. those commands have completed.</p>
  115. <p>Using events can compliment the use of queues to order commands by
  116. creating temporal dependencies between them (where commands in one
  117. queue must wait for the completion of commands in another). Events can
  118. also supplant queues altogether when, for example, using out-of-order
  119. queues.</p>
  120. <h1 id="example" class="section-header"><a href="#example">Example</a></h1>
  121. <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">
  122. <span class="comment">// Create an event list:</span>
  123. <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>();
  124. <span class="comment">// Enqueue a kernel on `queue_1`, creating an event representing the kernel</span>
  125. <span class="comment">// command in our list:</span>
  126. <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>;
  127. <span class="comment">// Map a buffer using `queue_2`, ensuring the map does not begin until</span>
  128. <span class="comment">// after the kernel command has completed:</span>
  129. <span class="ident">buffer</span>.<span class="ident">map</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>
  130. </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.BufferMapCmd.html" title="struct ocl::builders::BufferMapCmd">BufferMapCmd</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#1560-1564' title='goto source code'>[src]</a></span></h4>
  131. <div class='docblock'><p>Specifies the destination to store a new, optionally created event
  132. associated with this command.</p>
  133. <p>The destination can be a mutable reference to an empty event (created
  134. using <a href="struct.Event.html#method.empty"><code>Event::empty</code></a>) or a mutable reference to an event list.</p>
  135. <p>After this command is enqueued, the event in the destination can be
  136. passed to the <code>::ewait</code> method of another command. Doing so will cause
  137. the other command to wait until this command has completed before
  138. executing.</p>
  139. <p>Using events can compliment the use of queues to order commands by
  140. creating temporal dependencies between them (where commands in one
  141. queue must wait for the completion of commands in another). Events can
  142. also supplant queues altogether when, for example, using out-of-order
  143. queues.</p>
  144. <h1 id="example-1" class="section-header"><a href="#example-1">Example</a></h1>
  145. <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">
  146. <span class="comment">// Create an event list:</span>
  147. <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>();
  148. <span class="comment">// Enqueue a kernel on `queue_1`, creating an event representing the kernel</span>
  149. <span class="comment">// command in our list:</span>
  150. <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>;
  151. <span class="comment">// Map a buffer using `queue_2`, ensuring the map does not begin until</span>
  152. <span class="comment">// after the kernel command has completed:</span>
  153. <span class="ident">buffer</span>.<span class="ident">map</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>
  154. </div><h4 id='method.enq' class="method"><span id='enq.v' class='invisible'><code>pub unsafe 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="struct" href="../../ocl/struct.MemMap.html" title="struct ocl::MemMap">MemMap</a>&lt;T&gt;&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#1605-1615' title='goto source code'>[src]</a></span></h4>
  155. <div class='docblock'><p>Enqueues a map command, blocking the current thread until it
  156. completes and returns a reference to the mapped memory.</p>
  157. <h2 id="safety" class="section-header"><a href="#safety">Safety</a></h2>
  158. <p>The caller must ensure that either only one mapping of a buffer exists
  159. at a time or that, if simultaneously mapping for the purposes of
  160. sub-region access or whole-buffer aliasing, no two mappings will allow
  161. writes to the same memory region at the same time. Use atomics or some
  162. other synchronization mechanism to ensure this.</p>
  163. </div><h4 id='method.enq_async' class="method"><span id='enq_async.v' class='invisible'><code>pub unsafe fn <a href='#method.enq_async' class='fnname'>enq_async</a>(self) -&gt; <a class="type" href="../../ocl/error/type.Result.html" title="type ocl::error::Result">OclResult</a>&lt;<a class="struct" href="../../ocl/struct.FutureMemMap.html" title="struct ocl::FutureMemMap">FutureMemMap</a>&lt;T&gt;&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/ocl/standard/buffer.rs.html#1629-1648' title='goto source code'>[src]</a></span></h4>
  164. <div class='docblock'><p>Enqueues a map command and returns a future representing the
  165. completion of that map command.</p>
  166. <p>The returned future will resolve to a reference to the mapped memory.</p>
  167. <h2 id="safety-1" class="section-header"><a href="#safety-1">Safety</a></h2>
  168. <p>The caller must ensure that either only one mapping of a buffer exists
  169. at a time or that, if simultaneously mapping for the purposes of
  170. sub-region access or whole-buffer aliasing, no two mappings will allow
  171. writes to the same memory region at the same time. Use atomics or some
  172. other synchronization mechanism to ensure this.</p>
  173. </div></div></section>
  174. <section id='search' class="content hidden"></section>
  175. <section class="footer"></section>
  176. <aside id="help" class="hidden">
  177. <div>
  178. <h1 class="hidden">Help</h1>
  179. <div class="shortcuts">
  180. <h2>Keyboard Shortcuts</h2>
  181. <dl>
  182. <dt><kbd>?</kbd></dt>
  183. <dd>Show this help dialog</dd>
  184. <dt><kbd>S</kbd></dt>
  185. <dd>Focus the search field</dd>
  186. <dt><kbd>↑</kbd></dt>
  187. <dd>Move up in search results</dd>
  188. <dt><kbd>↓</kbd></dt>
  189. <dd>Move down in search results</dd>
  190. <dt><kbd>↹</kbd></dt>
  191. <dd>Switch tab</dd>
  192. <dt><kbd>&#9166;</kbd></dt>
  193. <dd>Go to active search result</dd>
  194. <dt><kbd>+</kbd></dt>
  195. <dd>Expand all sections</dd>
  196. <dt><kbd>-</kbd></dt>
  197. <dd>Collapse all sections</dd>
  198. </dl>
  199. </div>
  200. <div class="infos">
  201. <h2>Search Tricks</h2>
  202. <p>
  203. Prefix searches with a type followed by a colon (e.g.
  204. <code>fn:</code>) to restrict the search to a given type.
  205. </p>
  206. <p>
  207. Accepted types are: <code>fn</code>, <code>mod</code>,
  208. <code>struct</code>, <code>enum</code>,
  209. <code>trait</code>, <code>type</code>, <code>macro</code>,
  210. and <code>const</code>.
  211. </p>
  212. <p>
  213. Search functions by type signature (e.g.
  214. <code>vec -> usize</code> or <code>* -> vec</code>)
  215. </p>
  216. </div>
  217. </div>
  218. </aside>
  219. <script>
  220. window.rootPath = "../../";
  221. window.currentCrate = "ocl";
  222. </script>
  223. <script src="../../main.js"></script>
  224. <script defer src="../../search-index.js"></script>
  225. </body>
  226. </html>