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
The entire framework has been tested on a number of 64-bit systems, but not on 32-bit systems. Assertions will fail in srl_laser_segmentation, srl_laser_detectors, srl_nearest_neighbor_tracker etc. due to Eigen/SSE alignment problems, causing the programs to crash.
The massive uses of Eigen::Vector2d in std::vector and structure in the packages srl_laser_segmentation and srl_laser_detectors
The massive uses of various Eigen components in structure (e.g., Observation) in the package srl_nearest_neighbor_tracker, which are defined in the header file srl_nearest_neighbor_tracker/base/defs.h of the package.
Probably also in spencer_social_relations
The text was updated successfully, but these errors were encountered:
The entire framework has been tested on a number of 64-bit systems, but not on 32-bit systems. Assertions will fail in
srl_laser_segmentation
,srl_laser_detectors
,srl_nearest_neighbor_tracker
etc. due to Eigen/SSE alignment problems, causing the programs to crash.For more info, see:
http://eigen.tuxfamily.org/dox-devel/group__TopicUnalignedArrayAssert.html
Problematic areas of code:
Eigen::Vector2d
instd::vector
and structure in the packagessrl_laser_segmentation
andsrl_laser_detectors
Observation
) in the packagesrl_nearest_neighbor_tracker
, which are defined in the header filesrl_nearest_neighbor_tracker/base/defs.h
of the package.spencer_social_relations
The text was updated successfully, but these errors were encountered: