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

Polish the error message of paddle.slice. #35179

Merged
merged 2 commits into from
Aug 27, 2021

Conversation

hbwx24
Copy link
Contributor

@hbwx24 hbwx24 commented Aug 26, 2021

PR types

Others

PR changes

APIs

Describe

import paddle
import numpy as np

x_arr = np.array([], dtype=np.float32)
x = paddle.to_tensor(np.reshape(x_arr, (0, 0, 0)))

starts = paddle.to_tensor(np.reshape(np.array([], dtype=np.int32), (0,)))
ends = paddle.to_tensor(np.reshape(np.array([], dtype=np.int32), (0,)))

避免以下两种情况触发段错误

paddle.slice(x, [], starts, ends)
paddle.slice(x, [-1000000], starts, ends)

@paddle-bot-old
Copy link

Thanks for your contribution!
Please wait for the result of CI firstly. See Paddle CI Manual for details.

Copy link
Contributor

@chenwhql chenwhql left a comment

Choose a reason for hiding this comment

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

LGTM

Copy link
Contributor

@zhiqiu zhiqiu left a comment

Choose a reason for hiding this comment

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

LGTM

@hbwx24 hbwx24 merged commit 669853f into PaddlePaddle:develop Aug 27, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants