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
torch.autograd.Function
setup_context
ctx
forward
See https://pytorch.org/docs/master/notes/extending.func.html This should help make our code compatible with vmap
vmap
The text was updated successfully, but these errors were encountered:
I have given this a go. See: SparseMatMul on the batched-mm-vmap branch.
This implementation only works for the forward pass of the COO batched mm.
It fails for:
The CSR methods fails (at least in the first instance) due to the function _add_batch_dim not supporting CSR tensors.
Sorry, something went wrong.
When branches are created from issues, their pull requests are automatically linked.
See https://pytorch.org/docs/master/notes/extending.func.html
This should help make our code compatible with
vmap
The text was updated successfully, but these errors were encountered: