Skip to content

Commit

Permalink
Add return when input is tensor (#33570)
Browse files Browse the repository at this point in the history
* add return when input is tensor

* fix typo
  • Loading branch information
zhiqiu committed Jun 16, 2021
1 parent 294dfd2 commit 67a4de6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/paddle/tensor/creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,9 @@ def _handle_dtype(data, dtype):
)
elif isinstance(data, paddle.Tensor):
data = data._copy_to(place, False)
ata = _handle_dtype(data, dtype)
data = _handle_dtype(data, dtype)
data.stop_gradient = stop_gradient
return data
elif isinstance(data, (core.LoDTensor, core.Tensor)):
# Note(zhouwei25): should't expose it to users, just for internal use.
# convert core.Tensor/core.LoDTensor to VarBase first
Expand All @@ -145,6 +146,7 @@ def _handle_dtype(data, dtype):
data = data._copy_to(place, False)
data = _handle_dtype(data, dtype)
data.stop_gradient = stop_gradient
return data
else:
raise TypeError(
"Can't constructs a 'paddle.Tensor' with data type {}, data type must be scalar|list|tuple|numpy.ndarray|paddle.Tensor".
Expand Down

0 comments on commit 67a4de6

Please sign in to comment.