User profile: mbozzi

User info
User name:mbozzi
Bio:ESR's article /How To Ask Questions the Smart Way/ is the best guide to getting quick, effective help that I know of.
http://www.catb.org/esr/faqs/smart-questions.html

That document has substantial problems, but its content is mostly good.

Avoid the common trap of asking about potential solutions rather than your actual problem. Always provide context for the questions you ask.
http://xyproblem.info/

My opinions do not represent the position of my employer.
Statistical data
Occupation:Other
History
Joined:
Number of posts:3776
Latest posts:

Optimization using OpenMP: Parallel code is slow
[quote] I notice you were able to pass Eigen matrix to fftw_plan_dft_r2c_3d directly, which is somet...

how can a function name be an lvalue?
See this table that describes the C++17 taxonomy for value categories: [quote=mbozzi] [output]| Valu...

Optimization using OpenMP: Parallel code is slow
The division is because the code runs 1000 iterations, not to convert milliseconds->seconds.

Force implicit conversion of a string literal in templated class?
C++17! https://en.cppreference.com/w/cpp/language/class_template_argument_deduction

Force implicit conversion of a string literal in templated class?
Add deduction guides following the class definition (line 13): [code]Exception(char const*) -> Excep...