-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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 Sparse Tensor support: LEConv
, LGConv
, NNConv
, PANConv
, SignedConv
, and WLConv
#6936
Conversation
Codecov Report
@@ Coverage Diff @@
## master #6936 +/- ##
==========================================
+ Coverage 91.43% 91.45% +0.01%
==========================================
Files 431 431
Lines 23446 23453 +7
==========================================
+ Hits 21439 21449 +10
+ Misses 2007 2004 -3
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like we are making the assumption that if is_torch_sparse_tensor
then the tensor is of format coo
. Like for example in wl_conv
we use from_torch_sparse_coo_tensor
.
No description provided.