Why not use torch.scatter_reduce_ instead of the third-party pytorch_scatter operator
Opened this issue · 1 comments
GuWei007 commented
zhongxiang117 commented
Third party modules torch_*
(where * means scatter, cluster, sparse, spline, etc.) are well maintained and documented, also are widely used as a complement of the PyTorch module. They are more like specific utilities which meet the zen of Python that one module only focusing on one thing and doing it well. You will learn their benefits when you go deeper programming.