spla-tam / SplaTAM

SplaTAM: Splat, Track & Map 3D Gaussians for Dense RGB-D SLAM (CVPR 2024)
https://spla-tam.github.io/
BSD 3-Clause "New" or "Revised" License
1.5k stars 171 forks source link

`RuntimeError: numel: integer multiplication overflow` #106

Open kevintsq opened 5 months ago

kevintsq commented 5 months ago

When running SplaTAM on the same dataset, the following error sometimes happens. Why?

    im, radius, _, = Renderer(raster_settings=curr_data['cam'])(**rendervar)
  File "anaconda3/envs/splatam/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1130, in _call_impl
    return forward_call(*input, **kwargs)
  File "anaconda3/envs/splatam/lib/python3.10/site-packages/diff_gaussian_rasterization/__init__.py", line 186, in forward
    return rasterize_gaussians(
  File anaconda3/envs/splatam/lib/python3.10/site-packages/diff_gaussian_rasterization/__init__.py", line 28, in rasterize_gaussians
    return _RasterizeGaussians.apply(
  File "anaconda3/envs/splatam/lib/python3.10/site-packages/diff_gaussian_rasterization/__init__.py", line 79, in forward
    num_rendered, color, radii, geomBuffer, binningBuffer, imgBuffer, depth = _C.rasterize_gaussians(*args)
RuntimeError: numel: integer multiplication overflow
gwilczynski95 commented 4 months ago

Same problem here. Not in this project but I'm also using rasterize_gaussian function and I get this error

Nik-V9 commented 3 months ago

Hi, this seems to be a problem with the 3DGS rasterizer.

I would recommend checking the issues on the official repo: https://github.com/graphdeco-inria/gaussian-splatting

sherryQQ1996 commented 3 months ago

Hi, this seems to be a problem with the 3DGS rasterizer.

I would recommend checking the issues on the official repo: https://github.com/graphdeco-inria/gaussian-splatting

Hi, I also meet this problem