We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
No handlers found: "aten::unfold" No handlers found: "aten::split" No handlers found: "aten::einsum". No handlers found: "aten::permute".
hope to support these ops, thanks!
The text was updated successfully, but these errors were encountered:
Could you please provide an example model that contains aten::permute? Thank you!
aten::permute
Sorry, something went wrong.
Thank you for your reply!
x = torch.randn(2, 3, 5) x.size() torch.Size([2, 3, 5]) x.permute(2, 0, 1).size() torch.Size([5, 2, 3])
It seems to not require any multiplication and addition operations. I have calculated flops using other calculation codes, thank you!
Thanks! I was trying to refer to aten::einsum. Do you have an example of that?
aten::einsum
The model in my code is a bit complex:
A = torch.randn(b,n,c,h,w,k) B = torch.randn(b,n,c,h,w,k) C = torch.einsum('bnchwk,bnchwk -> bnchw', A, B) C.shape torch.Size([b,n,c,h,w])
A simple example:
import torch A = torch.randn(3, 4) B = torch.randn(4, 5) C = torch.einsum('ik,kj->ij', A, B) C.shape torch.Size([3, 5])
Thank you!
zhijian-liu
No branches or pull requests
No handlers found: "aten::unfold"
No handlers found: "aten::split"
No handlers found: "aten::einsum".
No handlers found: "aten::permute".
hope to support these ops, thanks!
The text was updated successfully, but these errors were encountered: