Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[xdoctest][task 143] Reformat example code with google style in quantization/quantization_pass.py #56240

Merged
merged 5 commits into from
Aug 21, 2023

Conversation

Candy2Tang
Copy link
Contributor

@Candy2Tang Candy2Tang commented Aug 13, 2023

PR types

Others

PR changes

Docs

Description

对应tracking issue: #55629
预览链接:

  • en: 生成中...
  • zh: 生成中...

@paddle-bot
Copy link

paddle-bot bot commented Aug 13, 2023

你的PR提交成功,感谢你对开源项目的贡献!
请关注后续CI自动化测试结果,详情请参考Paddle-CI手册
Your PR has been submitted. Thanks for your contribution!
Please wait for the result of CI firstly. See Paddle CI Manual for details.

@paddle-bot paddle-bot bot added contributor External developers status: proposed labels Aug 13, 2023
@paddle-bot
Copy link

paddle-bot bot commented Aug 13, 2023

✅ This PR's description meets the template requirements!
Please wait for other CI results.

@Candy2Tang Candy2Tang changed the title [xdoctest][task 143] test=docs_preview [xdoctest][task 143] Reformat example code with google style in quantization/quantization_pass.py Aug 13, 2023
@luotao1 luotao1 added the HappyOpenSource Pro 进阶版快乐开源活动,更具挑战性的任务 label Aug 14, 2023
Comment on lines 177 to 188
.. code-block:: python
# The original graph will be rewrite.
import paddle.static as static
from paddle.static.quantization \
import QuantizationTransformPass
from paddle.fluid.framework import IrGraph
from paddle.framework import core

graph = IrGraph(core.Graph(static.Program().desc), for_test=False)
place = paddle.CPUPlace()
transform_pass = QuantizationTransformPass(static.global_scope(),
place)
transform_pass.apply(graph)

>>> # The original graph will be rewrite.
>>> import paddle.static as static
>>> from paddle.static.quantization import QuantizationTransformPass
>>> from paddle.fluid.framework import IrGraph
>>> from paddle.framework import core

>>> graph = IrGraph(core.Graph(static.Program().desc), for_test=False)
>>> place = paddle.CPUPlace()
>>> transform_pass = QuantizationTransformPass(static.global_scope(), place)
>>> transform_pass.apply(graph)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

缩进 +1

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

是指 空行+1 吧?我看了其他人的PR ,缩进都是与 code 单词对齐的呀

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这里是指 Examples 与 code-block 之间的缩进

def foo():
    """
    Examples:
        .. code-block:: python

            import paddle 
            ...
    """

当然空行也得加

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

其他 PR 也是同样的问题,就不一一回复了

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

以及最好不要用 test=document_fix,预览可能无法构建

Comment on lines 2446 to 2459
.. code-block:: python
# The original graph will be rewrite.
import paddle
from paddle.static.quantization \
import QuantizationTransformPassV2
from paddle.fluid.framework import IrGraph
from paddle.framework import core

graph = IrGraph(core.Graph(static.Program().desc), for_test=False)
place = paddle.CPUPlace()
scope = paddle.static.global_scope()
transform_pass = QuantizationTransformPassV2(scope, place)
transform_pass.apply(graph)

>>> # The original graph will be rewrite.
>>> import paddle
>>> import paddle.static as static
>>> from paddle.static.quantization import QuantizationTransformPassV2
>>> from paddle.fluid.framework import IrGraph
>>> from paddle.framework import core

>>> graph = IrGraph(core.Graph(static.Program().desc), for_test=False)
>>> place = paddle.CPUPlace()
>>> scope = paddle.static.global_scope()
>>> transform_pass = QuantizationTransformPassV2(scope, place)
>>> transform_pass.apply(graph)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

缩进 +1

Comment on lines 2839 to 2852
.. code-block:: python
# The original graph will be rewrite.
import paddle
from paddle.static.quantization \
import AddQuantDequantPassV2
from paddle.fluid.framework import IrGraph
from paddle.framework import core

graph = IrGraph(core.Graph(static.Program().desc), for_test=False)
place = paddle.CPUPlace()
scope = paddle.static.global_scope()
add_quant_dequant_pass = AddQuantDequantPassV2(scope, place)
add_quant_dequant_pass.apply(graph)

>>> # The original graph will be rewrite.
>>> import paddle
>>> import paddle.static as static
>>> from paddle.static.quantization import AddQuantDequantPassV2
>>> from paddle.fluid.framework import IrGraph
>>> from paddle.framework import core

>>> graph = IrGraph(core.Graph(static.Program().desc), for_test=False)
>>> place = paddle.CPUPlace()
>>> scope = paddle.static.global_scope()
>>> add_quant_dequant_pass = AddQuantDequantPassV2(scope, place)
>>> add_quant_dequant_pass.apply(graph)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

缩进 +1

Comment on lines 3022 to 3035
.. code-block:: python
# The original graph will be rewrite.
import paddle
from paddle.static.quantization \
import ReplaceFakeQuantDequantPass
from paddle.fluid.framework import IrGraph
from paddle.framework import core

graph = IrGraph(core.Graph(static.Program().desc), for_test=False)
place = paddle.CPUPlace()
scope = paddle.static.global_scope()
replace_pass = ReplaceFakeQuantDequantPass(scope, place)
replace_pass.apply(graph)

>>> # The original graph will be rewrite.
>>> import paddle
>>> import paddle.static as static
>>> from paddle.static.quantization import ReplaceFakeQuantDequantPass
>>> from paddle.fluid.framework import IrGraph
>>> from paddle.framework import core

>>> graph = IrGraph(core.Graph(static.Program().desc), for_test=False)
>>> place = paddle.CPUPlace()
>>> scope = paddle.static.global_scope()
>>> replace_pass = ReplaceFakeQuantDequantPass(scope, place)
>>> replace_pass.apply(graph)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

缩进 +1

@Candy2Tang Candy2Tang requested a review from SigureMo August 18, 2023 08:57
Copy link
Member

@SigureMo SigureMo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTMeow 🐾

@luotao1 luotao1 merged commit 6e2d432 into PaddlePaddle:develop Aug 21, 2023
BeingGod pushed a commit to BeingGod/Paddle that referenced this pull request Sep 9, 2023
…ization/quantization_pass.py (PaddlePaddle#56240)

* [xdoctest][task 143] test=docs_preview

* test=document_fix

* fix indent

* fix indent in python/paddle/static/quantization/quantization_pass.py

---------

Co-authored-by: SigureMo <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
contributor External developers HappyOpenSource Pro 进阶版快乐开源活动,更具挑战性的任务
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants