Skip to content

Commit

Permalink
[Docs] Corrected additional sphinx build warnings
Browse files Browse the repository at this point in the history
- Rebased on main and corrected warnings, now up to date as of commit
  1f2ca06.
  • Loading branch information
Lunderberg committed Jun 17, 2021
1 parent a384fdd commit ff7f017
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
1 change: 0 additions & 1 deletion docs/dev/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,6 @@ for learning-based optimizations.
.. toctree::
:maxdepth: 1

device_target_interactions
debugger
virtual_machine
introduction_to_module_serialization
Expand Down
28 changes: 15 additions & 13 deletions python/tvm/relay/transform/transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,7 @@ def AnnotateSpans():
Returns
-------
ret : tvm.transform.Pass
The regsistered AnnotateSpans pass.
The registered AnnotateSpans pass.
"""
return _ffi_api.AnnotateSpans()

Expand All @@ -1178,18 +1178,20 @@ def FakeQuantizationToInteger():
"""
Find regions of the graph of the form
x w
| |
dq dq
\ /
op1
|
op2
|
q
where q == qnn.quantize and dq = qnn.dequantize
and rewrite them into integer versions of op1 and op2
.. code-block:: text
x w
| |
dq dq
\ /
op1
|
op2
|
q
where ``q == qnn.quantize`` and ``dq = qnn.dequantize``
and rewrite them into integer versions of ``op1`` and ``op2``
Rules for rewriting indivdual ops are in fake_quantization_to_integer.py
Expand Down

0 comments on commit ff7f017

Please sign in to comment.