Search code examples
c++openmpicc

Which version of openMP is supported by icpc 13.01?


I'm using the icpc, version 13.01 for compiling my c++ code. Since I want to use openMP for parallelization, I want to know which version of it is supported by the compiler. I found some methods to find it out for g++ compiler, but not for ipcp... Can anyone offer a hint?


Solution

  • If it's iteresting for someone else: After spending more time on research I found out, that it should support openmp version 3.1:

    https://software.intel.com/en-us/articles/intel-c-and-fortran-compilers-now-support-the-openmp-31-specification/

    The comment of Jeff also is very helpful!