Skip to content

Commit 4546bd8

Browse files
committed
auto-generating sphinx docs
1 parent c54112c commit 4546bd8

File tree

703 files changed

+722
-729
lines changed

Some content is hidden

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

703 files changed

+722
-729
lines changed

docs/master/__config__.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@
159159

160160

161161
<div class="version">
162-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
162+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
163163
</div>
164164

165165

docs/master/_modules/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

@@ -558,7 +558,7 @@ <h1>Source code for torch</h1><div class="highlight"><pre>
558558
<span class="k">return</span> <span class="n">module</span> <span class="o">+</span> <span class="n">class_name</span>
559559

560560

561-
<span class="k">def</span> <span class="nf">is_tensor</span><span class="p">(</span><span class="n">obj</span><span class="p">):</span>
561+
<div class="viewcode-block" id="is_tensor"><a class="viewcode-back" href="../generated/torch.is_tensor.html#torch.is_tensor">[docs]</a><span class="k">def</span> <span class="nf">is_tensor</span><span class="p">(</span><span class="n">obj</span><span class="p">):</span>
562562
<span class="sa">r</span><span class="sd">&quot;&quot;&quot;Returns True if `obj` is a PyTorch tensor.</span>
563563

564564
<span class="sd"> Note that this function is simply doing ``isinstance(obj, Tensor)``.</span>
@@ -569,16 +569,16 @@ <h1>Source code for torch</h1><div class="highlight"><pre>
569569
<span class="sd"> Args:</span>
570570
<span class="sd"> obj (Object): Object to test</span>
571571
<span class="sd"> &quot;&quot;&quot;</span>
572-
<span class="k">return</span> <span class="nb">isinstance</span><span class="p">(</span><span class="n">obj</span><span class="p">,</span> <span class="n">torch</span><span class="o">.</span><span class="n">Tensor</span><span class="p">)</span>
572+
<span class="k">return</span> <span class="nb">isinstance</span><span class="p">(</span><span class="n">obj</span><span class="p">,</span> <span class="n">torch</span><span class="o">.</span><span class="n">Tensor</span><span class="p">)</span></div>
573573

574574

575-
<span class="k">def</span> <span class="nf">is_storage</span><span class="p">(</span><span class="n">obj</span><span class="p">):</span>
575+
<div class="viewcode-block" id="is_storage"><a class="viewcode-back" href="../generated/torch.is_storage.html#torch.is_storage">[docs]</a><span class="k">def</span> <span class="nf">is_storage</span><span class="p">(</span><span class="n">obj</span><span class="p">):</span>
576576
<span class="sa">r</span><span class="sd">&quot;&quot;&quot;Returns True if `obj` is a PyTorch storage object.</span>
577577

578578
<span class="sd"> Args:</span>
579579
<span class="sd"> obj (Object): Object to test</span>
580580
<span class="sd"> &quot;&quot;&quot;</span>
581-
<span class="k">return</span> <span class="nb">type</span><span class="p">(</span><span class="n">obj</span><span class="p">)</span> <span class="ow">in</span> <span class="n">_storage_classes</span>
581+
<span class="k">return</span> <span class="nb">type</span><span class="p">(</span><span class="n">obj</span><span class="p">)</span> <span class="ow">in</span> <span class="n">_storage_classes</span></div>
582582

583583

584584
<div class="viewcode-block" id="set_default_tensor_type"><a class="viewcode-back" href="../generated/torch.set_default_tensor_type.html#torch.set_default_tensor_type">[docs]</a><span class="k">def</span> <span class="nf">set_default_tensor_type</span><span class="p">(</span><span class="n">t</span><span class="p">):</span>
@@ -819,9 +819,9 @@ <h1>Source code for torch</h1><div class="highlight"><pre>
819819
<span class="k">del</span> <span class="n">_torch_docs</span><span class="p">,</span> <span class="n">_tensor_docs</span><span class="p">,</span> <span class="n">_storage_docs</span>
820820

821821

822-
<div class="viewcode-block" id="compiled_with_cxx11_abi"><a class="viewcode-back" href="../generated/torch.compiled_with_cxx11_abi.html#torch.compiled_with_cxx11_abi">[docs]</a><span class="k">def</span> <span class="nf">compiled_with_cxx11_abi</span><span class="p">():</span>
822+
<span class="k">def</span> <span class="nf">compiled_with_cxx11_abi</span><span class="p">():</span>
823823
<span class="sa">r</span><span class="sd">&quot;&quot;&quot;Returns whether PyTorch was built with _GLIBCXX_USE_CXX11_ABI=1&quot;&quot;&quot;</span>
824-
<span class="k">return</span> <span class="n">_C</span><span class="o">.</span><span class="n">_GLIBCXX_USE_CXX11_ABI</span></div>
824+
<span class="k">return</span> <span class="n">_C</span><span class="o">.</span><span class="n">_GLIBCXX_USE_CXX11_ABI</span>
825825

826826

827827
<span class="c1"># Import the ops &quot;namespace&quot;</span>

docs/master/_modules/torch/__config__.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/_jit_internal.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/_lobpcg.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/_lowrank.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/_tensor_str.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/_utils.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/autograd.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/autograd/anomaly_mode.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/autograd/function.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/autograd/functional.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/autograd/grad_mode.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/autograd/gradcheck.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/autograd/profiler.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/cuda.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/cuda/amp/autocast_mode.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/cuda/amp/grad_scaler.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/cuda/comm.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/cuda/memory.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/cuda/nvtx.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/cuda/random.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/cuda/streams.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/distributed.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/distributed/autograd.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/distributed/distributed_c10d.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/distributed/optim/optimizer.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/distributed/rpc.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/distributed/rpc/api.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/distributed/rpc/functions.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/distributions/bernoulli.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/distributions/beta.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/distributions/binomial.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/distributions/categorical.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/distributions/cauchy.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/distributions/chi2.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/distributions/constraint_registry.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/distributions/constraints.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c8c53c8 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.6.0a0+c6b69a4 &#x25BC</a>
162162
</div>
163163

164164

0 commit comments

Comments
 (0)