# response file for Intel compiler - Release|x64 # Enables faster access to certain thread-local storage (TLS) variables (Windows only) /GA # Specifies the code optimization for applications. /O3 # Enables or disables inline expansion of intrinsic functions. /Oi # Enables all speed optimizations. /Ot # Enables interprocedural optimization between files. #/Qipo # Tells the compiler to generate multiple, processor-specific auto-dispatch code paths for Intel processors if there is a performance benefit. /QaxAVX,SSE4.2,SSE4.1,SSSE3,SSE3,SSE2 # Tells the auto-parallelizer to generate multithreaded code for loops that can be safely executed in parallel. # On Linux and Windows systems, this option sets option -opt-matmul (Linux OS) or /Qopt-matmul (Windows OS) if option O3 is also specified. /Qparallel # Enables the parallelizer to generate multi-threaded code based on the OpenMP* directives. /Qopenmp # Tells the compiler to link to certain parts of the Intel® Math Kernel Library (Intel® MKL). # DOES NOT SEEM TO WORK FOR STATIC LINKING #/Qmkl:parallel # Tells the compiler to link to the Intel® Threading Building Blocks (Intel® TBB) libraries. # /Qtbb # Produces a program database (PDB) that contains type information and symbolic debugging information # for use with the debugger. The symbolic debugging information includes the names and types of variables, # as well as functions and line numbers. /Zi does not affect optimizations. However, /Zi does imply /debug; # *** To be enabled for VTune usage. *** #/Zi # Enables generation of debug information # *** To be enabled for VTune usage. *** #/DEBUG # end of response file Release|x64