-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Eigen alignment issue #958
Comments
Thanks for the report. I'll take care of that in no more than a week.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As stated in the Using STL Containers with Eigen in the Eigen doc, special allocator might be needed for a
std::vector
ofEigen::Matrix
.By a simple test
grep "std::vector<Eigen" -rn | grep -v "allocator" * -rn
, I noticed that some of the code does not use the allocator yet.So just suggest to handle this issue to avoid potential problems.
The text was updated successfully, but these errors were encountered: