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

support getitem when index is a all-false bool tensor #41297

Merged
merged 5 commits into from
Apr 4, 2022

Conversation

FlyingQianMM
Copy link
Contributor

@FlyingQianMM FlyingQianMM commented Apr 1, 2022

PR types

Bug fixes

PR changes

APIs

Describe

When index is a all-false bool tensor, getitem will raise a error as bellow:

import paddle
import numpy as np
data = paddle.to_tensor(np.zeros((2, 4)), dtype='float32')
index = paddle.to_tensor([False, False], dtype='bool')
out = data[index]

image

After fixed, getitem can run correctly as bellow:

image

@paddle-bot-old
Copy link

paddle-bot-old bot commented Apr 1, 2022

你的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.

@FlyingQianMM FlyingQianMM merged commit eb6d7da into PaddlePaddle:develop Apr 4, 2022
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.

2 participants