Skip to content

Commit

Permalink
Modify based on reviewer's comment, test=document_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zhhsplendid committed Oct 12, 2020
1 parent 6b739ca commit 24dc58c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -939,9 +939,9 @@ def func(x):
x = paddle.ones([1, 2])
main_prog, start_prog, inputs, outputs = prog_trans.get_program(func, x)
print([i.name for i in inputs])
# [u'generated_tensor_0'] the feed input tensor name representing x
# [u'generated_tensor_0'] the feed input Tensor name representing x
print([o.name for o in outputs])
# [u'_generated_var_4'] the fetch output tensor name representing x_v
# [u'_generated_var_4'] the fetch output Tensor name representing x_v
"""
assert callable(
Expand Down

1 comment on commit 24dc58c

@paddle-bot-old
Copy link

Choose a reason for hiding this comment

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

Congratulation! Your pull request passed all required CI. You could ask reviewer(s) to approve and merge. 🎉

Please sign in to comment.