Pointnet2_PyTorch icon indicating copy to clipboard operation
Pointnet2_PyTorch copied to clipboard

ball_query.cpp error:cpu not support

Open leecheukwai opened this issue 3 years ago • 1 comments

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

leecheukwai avatar May 25 '22 15:05 leecheukwai

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()

SubjectNoi avatar Jun 27 '22 09:06 SubjectNoi