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

[PyTorch/NotImplementedError]: The following operators are not implemented: ['aten::bitwise_and'] #16005

Closed
HanGuo97 opened this issue Oct 28, 2023 · 0 comments · Fixed by #16105
Labels
needs-triage PRs or issues that need to be investigated by maintainers to find the right assignees to address it type: bug

Comments

@HanGuo97
Copy link

Steps to reproduce

import torch
def func(x1, x2):
    return torch.bitwise_and(x1, x2)

x1 = torch.tensor([True, True, False], device="cuda")
x2 = torch.tensor([False, True, False], device="cuda")
func(x1, x2) # --> runs
torch.compile(func, backend="tvm")(x1, x2) # --> not implemented error

Triage

Please refer to the list of label tags here to find the relevant tags and add them below in a bullet format (example below).

  • needs-triage
@HanGuo97 HanGuo97 added needs-triage PRs or issues that need to be investigated by maintainers to find the right assignees to address it type: bug labels Oct 28, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs-triage PRs or issues that need to be investigated by maintainers to find the right assignees to address it type: bug
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant