-
Notifications
You must be signed in to change notification settings - Fork 402
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
Performances on Windows #663
Comments
I think that the changes in |
This is required if we want to reduce the overhead we have on Windows (on my machine, for small containers, we are 50% slower than Eigen without it, and "only" 20% with it). |
Yeah, maybe in two different PRs 😒 |
I agree, replacing |
Also, do we want to replace all the inline with |
does the const qualifier make a difference in performance? I think |
We should consider the following options to improve performances on Windows:
const
member inconst_array
; this gives an Internal Compiler Error, that can be removed by removing the noexcept qualifier of the methods ofconst_array
.The text was updated successfully, but these errors were encountered: