Replies: 1 comment 2 replies
-
Yes, the latter one will consume less memory on |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I just find that in

GCNConv
, I can use theCOO
format to represent the adjacency matrix withedge_index
andedge_weight
or I can do it with sparse tensoredge_index
andedge_weight=None
. I run intoRuntimeError: CUDA out of memory
even withbatch_size=1
since my graph has up to 300000 nodes. I wonder whether the latter input will consume less cuda memory than the former one?Beta Was this translation helpful? Give feedback.
All reactions