-
Hi, I'm trying to understand what radius_graph is actually doing to obtain the list of edges. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
The CUDA implementation will not build a KDTree. It will leverage the "power of parallel processors" to check if every element is within Edit: Here is the link to the code which sits in |
Beta Was this translation helpful? Give feedback.
The CUDA implementation will not build a KDTree. It will leverage the "power of parallel processors" to check if every element is within
radius
of the central node. As such, it's non-parallel runtime complexity will be O(N^2). Given N parallel processors, it runtime is reduced to O(N).Edit: Here is the link to the code which sits in
torch-cluster
.