Skip to content

Commit 3b764ff

Browse files
author
github-actions[doc-deploy-bot]
committed
Docs for pull request 1993
1 parent 03313a2 commit 3b764ff

File tree

481 files changed

+4886
-506
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

481 files changed

+4886
-506
lines changed

pulls/1993/_modules/dpctl.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,9 @@
729729
<li class="toctree-l5 has-children"><a class="reference internal" href="../api_reference/libsyclinterface/generated/struct_MDLocalAccessorTy.html">struct MDLocalAccessorTy</a><input class="toctree-checkbox" id="toctree-checkbox-45" name="toctree-checkbox-45" role="switch" type="checkbox"/><label for="toctree-checkbox-45"><div class="visually-hidden">Toggle navigation of struct MDLocalAccessorTy</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul class="simple">
730730
</ul>
731731
</li>
732+
<li class="toctree-l5 has-children"><a class="reference internal" href="../api_reference/libsyclinterface/generated/struct_RawWorkGroupMemoryTy.html">struct RawWorkGroupMemoryTy</a><input class="toctree-checkbox" id="toctree-checkbox-46" name="toctree-checkbox-46" role="switch" type="checkbox"/><label for="toctree-checkbox-46"><div class="visually-hidden">Toggle navigation of struct RawWorkGroupMemoryTy</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul class="simple">
733+
</ul>
734+
</li>
732735
</ul>
733736
</li>
734737
</ul>
@@ -741,7 +744,7 @@
741744
<li class="toctree-l2"><a class="reference internal" href="../api_reference/dpctl_cmake.html">CMake support</a></li>
742745
</ul>
743746
</li>
744-
<li class="toctree-l1 has-children"><a class="reference internal" href="../contributor_guides/index.html">Contributing to <code class="xref py py-mod docutils literal notranslate"><span class="pre">dpctl</span></code></a><input class="toctree-checkbox" id="toctree-checkbox-46" name="toctree-checkbox-46" role="switch" type="checkbox"/><label for="toctree-checkbox-46"><div class="visually-hidden">Toggle navigation of Contributing to dpctl</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
747+
<li class="toctree-l1 has-children"><a class="reference internal" href="../contributor_guides/index.html">Contributing to <code class="xref py py-mod docutils literal notranslate"><span class="pre">dpctl</span></code></a><input class="toctree-checkbox" id="toctree-checkbox-47" name="toctree-checkbox-47" role="switch" type="checkbox"/><label for="toctree-checkbox-47"><div class="visually-hidden">Toggle navigation of Contributing to dpctl</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
745748
<li class="toctree-l2"><a class="reference internal" href="../contributor_guides/building.html">Building from the Source</a></li>
746749
<li class="toctree-l2"><a class="reference internal" href="../contributor_guides/building.html#building-the-libsyclinterface-library">Building the libsyclinterface Library</a></li>
747750
<li class="toctree-l2"><a class="reference internal" href="../contributor_guides/memory_ownership_sycl_interface.html">Working with DPCTLSyclInterface library</a></li>
@@ -834,10 +837,12 @@ <h1>Source code for dpctl</h1><div class="highlight"><pre>
834837
<span class="kn">from</span><span class="w"> </span><span class="nn">._sycl_event</span><span class="w"> </span><span class="kn">import</span> <span class="n">SyclEvent</span>
835838
<span class="kn">from</span><span class="w"> </span><span class="nn">._sycl_platform</span><span class="w"> </span><span class="kn">import</span> <span class="n">SyclPlatform</span><span class="p">,</span> <span class="n">get_platforms</span><span class="p">,</span> <span class="n">lsplatform</span>
836839
<span class="kn">from</span><span class="w"> </span><span class="nn">._sycl_queue</span><span class="w"> </span><span class="kn">import</span> <span class="p">(</span>
840+
<span class="n">LocalAccessor</span><span class="p">,</span>
837841
<span class="n">SyclKernelInvalidRangeError</span><span class="p">,</span>
838842
<span class="n">SyclKernelSubmitError</span><span class="p">,</span>
839843
<span class="n">SyclQueue</span><span class="p">,</span>
840844
<span class="n">SyclQueueCreationError</span><span class="p">,</span>
845+
<span class="n">WorkGroupMemory</span><span class="p">,</span>
841846
<span class="p">)</span>
842847
<span class="kn">from</span><span class="w"> </span><span class="nn">._sycl_queue_manager</span><span class="w"> </span><span class="kn">import</span> <span class="n">get_device_cached_queue</span>
843848
<span class="kn">from</span><span class="w"> </span><span class="nn">._sycl_timer</span><span class="w"> </span><span class="kn">import</span> <span class="n">SyclTimer</span>
@@ -887,6 +892,8 @@ <h1>Source code for dpctl</h1><div class="highlight"><pre>
887892
<span class="s2">&quot;SyclKernelInvalidRangeError&quot;</span><span class="p">,</span>
888893
<span class="s2">&quot;SyclKernelSubmitError&quot;</span><span class="p">,</span>
889894
<span class="s2">&quot;SyclQueueCreationError&quot;</span><span class="p">,</span>
895+
<span class="s2">&quot;WorkGroupMemory&quot;</span><span class="p">,</span>
896+
<span class="s2">&quot;LocalAccessor&quot;</span><span class="p">,</span>
890897
<span class="p">]</span>
891898
<span class="n">__all__</span> <span class="o">+=</span> <span class="p">[</span>
892899
<span class="s2">&quot;get_device_cached_queue&quot;</span><span class="p">,</span>

pulls/1993/_modules/dpctl/_device_selection.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,9 @@
729729
<li class="toctree-l5 has-children"><a class="reference internal" href="../../api_reference/libsyclinterface/generated/struct_MDLocalAccessorTy.html">struct MDLocalAccessorTy</a><input class="toctree-checkbox" id="toctree-checkbox-45" name="toctree-checkbox-45" role="switch" type="checkbox"/><label for="toctree-checkbox-45"><div class="visually-hidden">Toggle navigation of struct MDLocalAccessorTy</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul class="simple">
730730
</ul>
731731
</li>
732+
<li class="toctree-l5 has-children"><a class="reference internal" href="../../api_reference/libsyclinterface/generated/struct_RawWorkGroupMemoryTy.html">struct RawWorkGroupMemoryTy</a><input class="toctree-checkbox" id="toctree-checkbox-46" name="toctree-checkbox-46" role="switch" type="checkbox"/><label for="toctree-checkbox-46"><div class="visually-hidden">Toggle navigation of struct RawWorkGroupMemoryTy</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul class="simple">
733+
</ul>
734+
</li>
732735
</ul>
733736
</li>
734737
</ul>
@@ -741,7 +744,7 @@
741744
<li class="toctree-l2"><a class="reference internal" href="../../api_reference/dpctl_cmake.html">CMake support</a></li>
742745
</ul>
743746
</li>
744-
<li class="toctree-l1 has-children"><a class="reference internal" href="../../contributor_guides/index.html">Contributing to <code class="xref py py-mod docutils literal notranslate"><span class="pre">dpctl</span></code></a><input class="toctree-checkbox" id="toctree-checkbox-46" name="toctree-checkbox-46" role="switch" type="checkbox"/><label for="toctree-checkbox-46"><div class="visually-hidden">Toggle navigation of Contributing to dpctl</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
747+
<li class="toctree-l1 has-children"><a class="reference internal" href="../../contributor_guides/index.html">Contributing to <code class="xref py py-mod docutils literal notranslate"><span class="pre">dpctl</span></code></a><input class="toctree-checkbox" id="toctree-checkbox-47" name="toctree-checkbox-47" role="switch" type="checkbox"/><label for="toctree-checkbox-47"><div class="visually-hidden">Toggle navigation of Contributing to dpctl</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
745748
<li class="toctree-l2"><a class="reference internal" href="../../contributor_guides/building.html">Building from the Source</a></li>
746749
<li class="toctree-l2"><a class="reference internal" href="../../contributor_guides/building.html#building-the-libsyclinterface-library">Building the libsyclinterface Library</a></li>
747750
<li class="toctree-l2"><a class="reference internal" href="../../contributor_guides/memory_ownership_sycl_interface.html">Working with DPCTLSyclInterface library</a></li>

pulls/1993/_modules/dpctl/_sycl_timer.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,9 @@
729729
<li class="toctree-l5 has-children"><a class="reference internal" href="../../api_reference/libsyclinterface/generated/struct_MDLocalAccessorTy.html">struct MDLocalAccessorTy</a><input class="toctree-checkbox" id="toctree-checkbox-45" name="toctree-checkbox-45" role="switch" type="checkbox"/><label for="toctree-checkbox-45"><div class="visually-hidden">Toggle navigation of struct MDLocalAccessorTy</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul class="simple">
730730
</ul>
731731
</li>
732+
<li class="toctree-l5 has-children"><a class="reference internal" href="../../api_reference/libsyclinterface/generated/struct_RawWorkGroupMemoryTy.html">struct RawWorkGroupMemoryTy</a><input class="toctree-checkbox" id="toctree-checkbox-46" name="toctree-checkbox-46" role="switch" type="checkbox"/><label for="toctree-checkbox-46"><div class="visually-hidden">Toggle navigation of struct RawWorkGroupMemoryTy</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul class="simple">
733+
</ul>
734+
</li>
732735
</ul>
733736
</li>
734737
</ul>
@@ -741,7 +744,7 @@
741744
<li class="toctree-l2"><a class="reference internal" href="../../api_reference/dpctl_cmake.html">CMake support</a></li>
742745
</ul>
743746
</li>
744-
<li class="toctree-l1 has-children"><a class="reference internal" href="../../contributor_guides/index.html">Contributing to <code class="xref py py-mod docutils literal notranslate"><span class="pre">dpctl</span></code></a><input class="toctree-checkbox" id="toctree-checkbox-46" name="toctree-checkbox-46" role="switch" type="checkbox"/><label for="toctree-checkbox-46"><div class="visually-hidden">Toggle navigation of Contributing to dpctl</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
747+
<li class="toctree-l1 has-children"><a class="reference internal" href="../../contributor_guides/index.html">Contributing to <code class="xref py py-mod docutils literal notranslate"><span class="pre">dpctl</span></code></a><input class="toctree-checkbox" id="toctree-checkbox-47" name="toctree-checkbox-47" role="switch" type="checkbox"/><label for="toctree-checkbox-47"><div class="visually-hidden">Toggle navigation of Contributing to dpctl</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
745748
<li class="toctree-l2"><a class="reference internal" href="../../contributor_guides/building.html">Building from the Source</a></li>
746749
<li class="toctree-l2"><a class="reference internal" href="../../contributor_guides/building.html#building-the-libsyclinterface-library">Building the libsyclinterface Library</a></li>
747750
<li class="toctree-l2"><a class="reference internal" href="../../contributor_guides/memory_ownership_sycl_interface.html">Working with DPCTLSyclInterface library</a></li>

0 commit comments

Comments
 (0)