Effective optimization strategies on modern C++ compilers

后端 未结 19 2088
梦如初夏
梦如初夏 2020-12-22 17:02

I\'m working on scientific code that is very performance-critical. An initial version of the code has been written and tested, and now, with profiler in hand, it\'s time to

19条回答
  •  不知归路
    2020-12-22 17:26

    If you are doing heavy floating point math you should consider using SSE to vectorize your computations if that maps well to your problem.

    Google SSE intrinsics for more information about this.

提交回复
热议问题