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
It's unclear without being a gcc expert in what optimisation levels the lib is actually compiled.
Wheel should be the most possible optimized for performance. We might consider adding a "DEBUG_COMPILE" env variable read by the setup.py to compile in debug mode for easier debugging. That's actually changing this line (necessary, maybe not sufficient):
"-DCMAKE_BUILD_TYPE=Release"
to
"-DCMAKE_BUILD_TYPE=Debug"
The text was updated successfully, but these errors were encountered:
Right now, the setup.py passes "-g -O0" while CMake is passing "-O2"
It's unclear without being a gcc expert in what optimisation levels the lib is actually compiled.
Wheel should be the most possible optimized for performance. We might consider adding a "DEBUG_COMPILE" env variable read by the setup.py to compile in debug mode for easier debugging. That's actually changing this line (necessary, maybe not sufficient):
to
The text was updated successfully, but these errors were encountered: