Skip to content

Commit 9b9f417

Browse files
author
github-actions[doc-deploy-bot]
committed
Docs for pull request 2021
1 parent 3b764ff commit 9b9f417

File tree

478 files changed

+6230
-504
lines changed

Some content is hidden

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

478 files changed

+6230
-504
lines changed

pulls/2021/_modules/dpctl.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,7 @@
351351
</ul>
352352
</li>
353353
<li class="toctree-l3 has-children"><a class="reference internal" href="../api_reference/dpctl/generated/dpctl.SyclPlatform.html">dpctl.SyclPlatform</a><input class="toctree-checkbox" id="toctree-checkbox-9" name="toctree-checkbox-9" role="switch" type="checkbox"/><label for="toctree-checkbox-9"><div class="visually-hidden">Toggle navigation of dpctl.SyclPlatform</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
354+
<li class="toctree-l4"><a class="reference internal" href="../api_reference/dpctl/generated/generated/dpctl.SyclPlatform.get_devices.html">dpctl.SyclPlatform.get_devices</a></li>
354355
<li class="toctree-l4"><a class="reference internal" href="../api_reference/dpctl/generated/generated/dpctl.SyclPlatform.print_platform_info.html">dpctl.SyclPlatform.print_platform_info</a></li>
355356
<li class="toctree-l4"><a class="reference internal" href="../api_reference/dpctl/generated/generated/dpctl.SyclPlatform.backend.html">dpctl.SyclPlatform.backend</a></li>
356357
<li class="toctree-l4"><a class="reference internal" href="../api_reference/dpctl/generated/generated/dpctl.SyclPlatform.default_context.html">dpctl.SyclPlatform.default_context</a></li>
@@ -723,6 +724,9 @@
723724
<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">
724725
</ul>
725726
</li>
727+
<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">
728+
</ul>
729+
</li>
726730
</ul>
727731
</li>
728732
</ul>
@@ -735,7 +739,7 @@
735739
<li class="toctree-l2"><a class="reference internal" href="../api_reference/dpctl_cmake.html">CMake support</a></li>
736740
</ul>
737741
</li>
738-
<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>
742+
<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>
739743
<li class="toctree-l2"><a class="reference internal" href="../contributor_guides/building.html">Building from the Source</a></li>
740744
<li class="toctree-l2"><a class="reference internal" href="../contributor_guides/building.html#building-the-libsyclinterface-library">Building the libsyclinterface Library</a></li>
741745
<li class="toctree-l2"><a class="reference internal" href="../contributor_guides/memory_ownership_sycl_interface.html">Working with DPCTLSyclInterface library</a></li>
@@ -827,10 +831,12 @@ <h1>Source code for dpctl</h1><div class="highlight"><pre>
827831
<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>
828832
<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>
829833
<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>
834+
<span class="n">LocalAccessor</span><span class="p">,</span>
830835
<span class="n">SyclKernelInvalidRangeError</span><span class="p">,</span>
831836
<span class="n">SyclKernelSubmitError</span><span class="p">,</span>
832837
<span class="n">SyclQueue</span><span class="p">,</span>
833838
<span class="n">SyclQueueCreationError</span><span class="p">,</span>
839+
<span class="n">WorkGroupMemory</span><span class="p">,</span>
834840
<span class="p">)</span>
835841
<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>
836842
<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>
@@ -879,6 +885,8 @@ <h1>Source code for dpctl</h1><div class="highlight"><pre>
879885
<span class="s2">&quot;SyclKernelInvalidRangeError&quot;</span><span class="p">,</span>
880886
<span class="s2">&quot;SyclKernelSubmitError&quot;</span><span class="p">,</span>
881887
<span class="s2">&quot;SyclQueueCreationError&quot;</span><span class="p">,</span>
888+
<span class="s2">&quot;WorkGroupMemory&quot;</span><span class="p">,</span>
889+
<span class="s2">&quot;LocalAccessor&quot;</span><span class="p">,</span>
882890
<span class="p">]</span>
883891
<span class="n">__all__</span> <span class="o">+=</span> <span class="p">[</span>
884892
<span class="s2">&quot;get_device_cached_queue&quot;</span><span class="p">,</span>

pulls/2021/_modules/dpctl/_device_selection.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,7 @@
351351
</ul>
352352
</li>
353353
<li class="toctree-l3 has-children"><a class="reference internal" href="../../api_reference/dpctl/generated/dpctl.SyclPlatform.html">dpctl.SyclPlatform</a><input class="toctree-checkbox" id="toctree-checkbox-9" name="toctree-checkbox-9" role="switch" type="checkbox"/><label for="toctree-checkbox-9"><div class="visually-hidden">Toggle navigation of dpctl.SyclPlatform</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
354+
<li class="toctree-l4"><a class="reference internal" href="../../api_reference/dpctl/generated/generated/dpctl.SyclPlatform.get_devices.html">dpctl.SyclPlatform.get_devices</a></li>
354355
<li class="toctree-l4"><a class="reference internal" href="../../api_reference/dpctl/generated/generated/dpctl.SyclPlatform.print_platform_info.html">dpctl.SyclPlatform.print_platform_info</a></li>
355356
<li class="toctree-l4"><a class="reference internal" href="../../api_reference/dpctl/generated/generated/dpctl.SyclPlatform.backend.html">dpctl.SyclPlatform.backend</a></li>
356357
<li class="toctree-l4"><a class="reference internal" href="../../api_reference/dpctl/generated/generated/dpctl.SyclPlatform.default_context.html">dpctl.SyclPlatform.default_context</a></li>
@@ -723,6 +724,9 @@
723724
<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">
724725
</ul>
725726
</li>
727+
<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">
728+
</ul>
729+
</li>
726730
</ul>
727731
</li>
728732
</ul>
@@ -735,7 +739,7 @@
735739
<li class="toctree-l2"><a class="reference internal" href="../../api_reference/dpctl_cmake.html">CMake support</a></li>
736740
</ul>
737741
</li>
738-
<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>
742+
<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>
739743
<li class="toctree-l2"><a class="reference internal" href="../../contributor_guides/building.html">Building from the Source</a></li>
740744
<li class="toctree-l2"><a class="reference internal" href="../../contributor_guides/building.html#building-the-libsyclinterface-library">Building the libsyclinterface Library</a></li>
741745
<li class="toctree-l2"><a class="reference internal" href="../../contributor_guides/memory_ownership_sycl_interface.html">Working with DPCTLSyclInterface library</a></li>

pulls/2021/_modules/dpctl/_sycl_timer.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,7 @@
351351
</ul>
352352
</li>
353353
<li class="toctree-l3 has-children"><a class="reference internal" href="../../api_reference/dpctl/generated/dpctl.SyclPlatform.html">dpctl.SyclPlatform</a><input class="toctree-checkbox" id="toctree-checkbox-9" name="toctree-checkbox-9" role="switch" type="checkbox"/><label for="toctree-checkbox-9"><div class="visually-hidden">Toggle navigation of dpctl.SyclPlatform</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
354+
<li class="toctree-l4"><a class="reference internal" href="../../api_reference/dpctl/generated/generated/dpctl.SyclPlatform.get_devices.html">dpctl.SyclPlatform.get_devices</a></li>
354355
<li class="toctree-l4"><a class="reference internal" href="../../api_reference/dpctl/generated/generated/dpctl.SyclPlatform.print_platform_info.html">dpctl.SyclPlatform.print_platform_info</a></li>
355356
<li class="toctree-l4"><a class="reference internal" href="../../api_reference/dpctl/generated/generated/dpctl.SyclPlatform.backend.html">dpctl.SyclPlatform.backend</a></li>
356357
<li class="toctree-l4"><a class="reference internal" href="../../api_reference/dpctl/generated/generated/dpctl.SyclPlatform.default_context.html">dpctl.SyclPlatform.default_context</a></li>
@@ -723,6 +724,9 @@
723724
<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">
724725
</ul>
725726
</li>
727+
<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">
728+
</ul>
729+
</li>
726730
</ul>
727731
</li>
728732
</ul>
@@ -735,7 +739,7 @@
735739
<li class="toctree-l2"><a class="reference internal" href="../../api_reference/dpctl_cmake.html">CMake support</a></li>
736740
</ul>
737741
</li>
738-
<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>
742+
<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>
739743
<li class="toctree-l2"><a class="reference internal" href="../../contributor_guides/building.html">Building from the Source</a></li>
740744
<li class="toctree-l2"><a class="reference internal" href="../../contributor_guides/building.html#building-the-libsyclinterface-library">Building the libsyclinterface Library</a></li>
741745
<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)