Skip to content

Commit 383377c

Browse files
committed
Generate Python docs from pytorch/pytorch@bb347dc
1 parent 94079d7 commit 383377c

File tree

2,188 files changed

+3235
-2954
lines changed

Some content is hidden

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

2,188 files changed

+3235
-2954
lines changed

docs/master/_dynamo.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@
237237
<div class="pytorch-left-menu-search">
238238

239239
<div class="version">
240-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
240+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
241241
</div>
242242

243243

docs/master/_images/RReLU.png

-426 Bytes

docs/master/_modules/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/__config__.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/_dynamo.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/_dynamo/backends/registry.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/_dynamo/eval_frame.html

+3-7
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

@@ -883,13 +883,9 @@ <h1>Source code for torch._dynamo.eval_frame</h1><div class="highlight"><pre>
883883
<span class="k">if</span> <span class="n">disable</span> <span class="ow">or</span> <span class="n">os</span><span class="o">.</span><span class="n">environ</span><span class="o">.</span><span class="n">get</span><span class="p">(</span><span class="s2">&quot;TORCHDYNAMO_DISABLE&quot;</span><span class="p">,</span> <span class="s2">&quot;&quot;</span><span class="p">)</span> <span class="o">==</span> <span class="s2">&quot;1&quot;</span><span class="p">:</span>
884884
<span class="k">return</span> <span class="n">_NullDecorator</span><span class="p">()</span>
885885
<span class="k">if</span> <span class="n">sys</span><span class="o">.</span><span class="n">platform</span> <span class="o">==</span> <span class="s2">&quot;win32&quot;</span><span class="p">:</span>
886-
<span class="n">warnings</span><span class="o">.</span><span class="n">warn</span><span class="p">(</span>
887-
<span class="s2">&quot;Windows is not currently supported, torch.compile() will do nothing&quot;</span>
888-
<span class="p">)</span>
889-
<span class="k">return</span> <span class="n">_NullDecorator</span><span class="p">()</span>
886+
<span class="k">raise</span> <span class="ne">RuntimeError</span><span class="p">(</span><span class="s2">&quot;Windows not yet supported for torch.compile&quot;</span><span class="p">)</span>
890887
<span class="k">if</span> <span class="n">sys</span><span class="o">.</span><span class="n">version_info</span> <span class="o">&gt;=</span> <span class="p">(</span><span class="mi">3</span><span class="p">,</span> <span class="mi">11</span><span class="p">):</span>
891-
<span class="n">warnings</span><span class="o">.</span><span class="n">warn</span><span class="p">(</span><span class="s2">&quot;Python 3.11+ not yet supported, torch.compile() will do nothing&quot;</span><span class="p">)</span>
892-
<span class="k">return</span> <span class="n">_NullDecorator</span><span class="p">()</span>
888+
<span class="k">raise</span> <span class="ne">RuntimeError</span><span class="p">(</span><span class="s2">&quot;Python 3.11+ not yet supported for torch.compile&quot;</span><span class="p">)</span>
893889

894890
<span class="n">backend</span> <span class="o">=</span> <span class="n">get_compiler_fn</span><span class="p">(</span><span class="n">backend</span><span class="p">)</span>
895891

docs/master/_modules/torch/_jit_internal.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/_lobpcg.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/_lowrank.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/_tensor.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/_tensor_str.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/_utils.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/intrinsic/modules/fused.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/intrinsic/qat/modules/conv_fused.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/intrinsic/qat/modules/linear_relu.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/intrinsic/quantized/modules/bn_relu.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/intrinsic/quantized/modules/conv_relu.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/intrinsic/quantized/modules/linear_relu.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/qat/dynamic/modules/linear.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/qat/modules/conv.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/qat/modules/linear.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/quantizable/modules/activation.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/quantizable/modules/rnn.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/quantized/dynamic/modules/linear.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/quantized/dynamic/modules/rnn.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/quantized/functional.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/quantized/modules/activation.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/quantized/modules/batchnorm.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/quantized/modules/conv.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/quantized/modules/embedding_ops.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/quantized/modules/functional_modules.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/quantized/modules/linear.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/nn/quantized/modules/normalization.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/ns/_numeric_suite.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/ns/_numeric_suite_fx.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/ns/fx/utils.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/quantization.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/quantization/backend_config/backend_config.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

docs/master/_modules/torch/ao/quantization/fake_quantize.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
<div class="pytorch-left-menu-search">
236236

237237
<div class="version">
238-
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitdd7e2b7 ) &#x25BC</a>
238+
<a href='https://pytorch.org/docs/versions.html'>master (2.0.0a0+gitbb347dc ) &#x25BC</a>
239239
</div>
240240

241241

0 commit comments

Comments
 (0)