Hi,
When I run codes below
import MinkowskiEngine as ME, MinkowskiEngine.utils as ME_utils
import numpy as np
coords = np.random.rand(10000, 3) * 100
feats = np.random.rand(10000, 3)
labels = np.ones((10000, 1))
print(ME_utils.sparse_quantize(coords, feats=feats, labels=labels))
I got error:
terminate called after throwing an instance of 'thrust::system::system_error'
what(): parallel_for failed: invalid argument
But code above works fine after I reduced the size of coords (100, such as) or just removed the argument 'labels'.
Is there any suggestion?
THX!