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
{{ message }}
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
cur_coords = points[b][:, :3]
cur_coords use memory of points, and conducted a inplace-subtract
I run code in torch1.12. lidar points was changed here and would not match GT
The text was updated successfully, but these errors were encountered:
Yeah, I also found it. However, in float16 mode, the decorator @auto_fp16 in MMCV will deep copy the points and bypass this potential bug, so the points is not modified in-place. In float32 mode, this bug occurs.
Solution: the pointshere could be replaced by copy.deepcopy(points)
bevfusion/mmdet3d/models/vtransforms/base.py
Line 249 in db75150
cur_coords = points[b][:, :3]
cur_coords use memory of points, and conducted a inplace-subtract
I run code in torch1.12. lidar points was changed here and would not match GT
The text was updated successfully, but these errors were encountered: