Mentions légales du service

Skip to content
Snippets Groups Projects
Commit e057b18d authored by hhakim's avatar hhakim
Browse files

Add fno-wrapv opion (disabling fwrapv opt. option) because it slows down the...

Add fno-wrapv opion (disabling fwrapv opt. option) because it slows down the butterfly factorization.
parent 36135ea4
No related branches found
No related tags found
No related merge requests found
...@@ -84,7 +84,7 @@ if(WIN32) ...@@ -84,7 +84,7 @@ if(WIN32)
set(FAUST_SETUP_PY_CFLAGS "'/w', '/EHsc', '/DNOMINMAX'") set(FAUST_SETUP_PY_CFLAGS "'/w', '/EHsc', '/DNOMINMAX'")
set(FAUST_SETUP_PY_LFLAGS "") set(FAUST_SETUP_PY_LFLAGS "")
else() #UNIX else() #UNIX
set(FAUST_SETUP_PY_CFLAGS "'-std=c++11', '-O3'") set(FAUST_SETUP_PY_CFLAGS "'-std=c++11', '-O3', '-fno-wrapv'") # without -fno-wrapv the butterfly factorization is twice slower
set(FAUST_SETUP_PY_LFLAGS "'-s'") set(FAUST_SETUP_PY_LFLAGS "'-s'")
endif() endif()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment