You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When calling graclus_cluster(row, col, weight, numnodes) on empty input, the call hangs. In particular by "empty inputs" I mean inputs like: row=torch.Tensor([]), col=torch.Tensor([]), weight=torch.Tensor([]), numnodes=some positive integer. While the call is hanging nvidia-smi still shows substantial GPU utilization, suggesting to me that there is some unintended infinite loop running on the GPU in this case. This is probably not a super important edge case (I was only calling the function with empty inputs due to a bug in my data handling which has since been fixed), but I thought it was worth notifying the developers, as I assume this is not the intended failure mode.
When calling
graclus_cluster(row, col, weight, numnodes)
on empty input, the call hangs. In particular by "empty inputs" I mean inputs like:row=torch.Tensor([])
,col=torch.Tensor([])
,weight=torch.Tensor([])
,numnodes=some positive integer
. While the call is hangingnvidia-smi
still shows substantial GPU utilization, suggesting to me that there is some unintended infinite loop running on the GPU in this case. This is probably not a super important edge case (I was only calling the function with empty inputs due to a bug in my data handling which has since been fixed), but I thought it was worth notifying the developers, as I assume this is not the intended failure mode.My environment is:
The text was updated successfully, but these errors were encountered: