-
Notifications
You must be signed in to change notification settings - Fork 373
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
ait: Explicitly throw when indexing a boolean tensor for masking #992
Conversation
39c7d22
to
9d01673
Compare
This pull request was exported from Phabricator. Differential Revision: D53654054 |
…ebookincubator#992) Summary: Currently AIT hasn't implemented `tensor[boolean_tensor]` for masking. It fail shortly after this call, at: > 'Tensor' object has no attribute 'upper_bound' ``` > link-tree/aitemplate/utils/shape_utils.py(195)convert_IntVar_to_int() -> if var.upper_bound() == var.lower_bound(): ``` Reviewed By: frank-wei, khabinov Differential Revision: D53654054
9d01673
to
d970fac
Compare
This pull request was exported from Phabricator. Differential Revision: D53654054 |
1 similar comment
This pull request was exported from Phabricator. Differential Revision: D53654054 |
…ebookincubator#992) Summary: Currently AIT hasn't implemented `tensor[boolean_tensor]` for masking. It fail shortly after this call, at: > 'Tensor' object has no attribute 'upper_bound' ``` > link-tree/aitemplate/utils/shape_utils.py(195)convert_IntVar_to_int() -> if var.upper_bound() == var.lower_bound(): ``` Reviewed By: frank-wei, khabinov Differential Revision: D53654054
d970fac
to
3317564
Compare
This pull request was exported from Phabricator. Differential Revision: D53654054 |
…ebookincubator#992) Summary: Currently AIT hasn't implemented `tensor[boolean_tensor]` for masking. It fail shortly after this call, at: > 'Tensor' object has no attribute 'upper_bound' ``` > link-tree/aitemplate/utils/shape_utils.py(195)convert_IntVar_to_int() -> if var.upper_bound() == var.lower_bound(): ``` Reviewed By: frank-wei, khabinov Differential Revision: D53654054
This pull request was exported from Phabricator. Differential Revision: D53654054 |
3317564
to
b3e8400
Compare
This pull request was exported from Phabricator. Differential Revision: D53654054 |
This pull request has been merged in a99c753. |
Summary:
Currently AIT hasn't implemented
tensor[boolean_tensor]
for masking. It fail shortly after this call, at:Reviewed By: khabinov
Differential Revision: D53654054