Skip to content

Commit 21e794c

Browse files
Haichao-ZhangYang Yang(Tony)
authored andcommitted
change name debuger to debugger (#10949)
1 parent 211e131 commit 21e794c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
File renamed without changes.

python/paddle/fluid/tests/unittests/test_debugger.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import unittest
1616
import paddle.fluid as fluid
1717
import paddle.fluid.core as core
18-
from paddle.fluid import debuger
18+
from paddle.fluid import debugger
1919
from paddle.fluid.framework import Program
2020

2121

@@ -51,9 +51,9 @@ def test_debug_str(self):
5151
outputs={"Out": mul_out},
5252
attrs={"x_num_col_dims": 1})
5353

54-
print(debuger.pprint_program_codes(p))
54+
print(debugger.pprint_program_codes(p))
5555

56-
debuger.draw_block_graphviz(p.block(0), path="./test.dot")
56+
debugger.draw_block_graphviz(p.block(0), path="./test.dot")
5757

5858

5959
if __name__ == '__main__':

0 commit comments

Comments
 (0)