Open
Description
when i use knn to calculate atom neighbour,it's easy count > 100,can i set k > 100?
in your cuda code u set k<=100
https://github.com/rusty1s/pytorch_cluster/blob/master/csrc/cuda/knn_cuda.cu line 98
AT_ASSERTM(k <= 100, "k
needs to smaller than or equal to 100");