erikwijmans / Pointnet2_PyTorch

PyTorch implementation of Pointnet2/Pointnet++
The Unlicense
1.53k stars 347 forks source link

ball_query.cpp error:cpu not support #169

Open leecheukwai opened 2 years ago

leecheukwai commented 2 years ago

my cpu is i7 6700k ,did the error means these code cant run on my cpu?

SubjectNoi commented 2 years ago

If you read the code you will find that these operations only have GPU implementation. So just move your tensor to GPU: input = torch.randn(shape).cuda()