Questions tagged [intel-parallel-studio]

Questions related to Intel Parallel Studio suite of C++ and Fortran performance tools for technical computing, enterprise and HPC on Windows, Linux and OS X.

Questions related to Intel Parallel Studio suite of C++ and Fortran performance tools for technical computing, enterprise and HPC on Windows, Linux and OS X.

More information is available at https://software.intel.com/en-us/intel-parallel-studio-xe

Related tags:

54 questions
4
votes
0 answers

Intel C compiler catastrophic error: cannot open source file "stdio.h" MacOS

I installed Intel parallel studio XE on my Macbook running MacOS Catalina 10.15. The Intel C and C++ compilers refuse to work and throw following error. /Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h(107): catastrophic error: cannot…
San_kesh
  • 41
  • 1
4
votes
3 answers

error while loading shared libraries: libiomp5.so: cannot open shared object file: No such file or directory

I installed Intel® Parallel Studio XE Composer Edition for C++ Linux to use OpenMP 4.0. I compile example code with icc example.c -openmp -o example When I run ./example I have an error: ./example: error while loading shared libraries:…
3
votes
1 answer

libtbb.so.2 library does not exist when sourcing `compilervars.sh intel64`

I am trying to run a file using the make command. But when I do this, I get the message: make: ifort: Command not found I know that I must set the ifort environment using the following…
3
votes
0 answers

How to link the external .lib into the Fortran

screenshot of the error I am trying to recompile a Fortran projects using Intel Visual Fortran (Parallel Studio XE 2017) with MS Visual Studio 2013. The code uses a couple of external .lib files in the Fortran script which are:- use m21df use…
3
votes
0 answers

How to enable standard C++ 14/17 in Intel C++ compiler?

Programming Environment: Visual Studio 2017(15.6.2) Intel Parallel Studio Xe 2018 Update 1 Windows 10(6299.309) My problem is that I cannot include latest headers like std::variant and std::optional with latest Intel C++ 18 update 1 version. Say…
3
votes
0 answers

C++11 code, GCC [OK], VS [FAILS], ICC[??]

I am trying to build a CPP project which uses C++11 features. With GCC-4.8.3 and specifying -std=c++11 the code has no error. Visual Studio 2013 as you know doesn't fully support C++11. Instead I installed Intel Parallel Studio XE 2015 which…
mahmood
  • 23,197
  • 49
  • 147
  • 242
2
votes
1 answer

Intel Fortran compiler cannot find module `mpi`

I recently installed Intel's Parallel Studio XE 2019 under an academic license, and I'm trying to compile Fortran90 code that employs MPI. I get the following error: >> ifort -O3 -ip -ipo -c parallel.f90 parallel.f90(7): error #7002: Error in…
MPA
  • 1,878
  • 2
  • 26
  • 51
2
votes
1 answer

OpenCV build in debug mode with optimizations?

I'm trying to profile OpenCV using Intel VTune Amplifier. In this page, there is a list of compiler options suggested to obtain the best analysis. As you can see, it's a mix of debug flags (e.g. -g) and optimization flags (e.g. -O2 or higher), so we…
justHelloWorld
  • 6,478
  • 8
  • 58
  • 138
1
vote
1 answer

How to make Intel Parallel in Visual Studio run .f77, .f95, etc.?

It seems that after installing Intel Parallel XE 2020 on Visual Studio 2019, I cannot run some extensions of Fortran such as .f77 and f95. It runs .f90 for example, but how can I fix it to run every extension?
user17284035
1
vote
1 answer

Compiling IPOPT with Cygwin and Intel Parallel Studio

I am attempting to compile IPOPT 3.13.3 in Windows using Cygwin. I have a copy of Intel Parallel Studio 2019 and am trying to use the Intel compilers as well as Intel MKL from this install. Here's my process: Start the Intel compiler 64-bit command…
1
vote
0 answers

Intel C++ compiler Intel Parallel XE 19.1 gives random errors from Visual studio code for inclusion of or

I am using Intel Parallel XE (R) C++ Intel(R) 64 Compiler for applications running on Intel(R) 64, Version 19.1.0.166 Build 20191121 and Visual Studios Professional 2019 (MSVC\14.27.29110) here is a simple sample code which gives the error while…
1
vote
1 answer

Intel Advisor: Inspect method including all submethods

Using Intel Advisor and the roof line model, I would like to assess the performance of a certain function. This function uses the Eigen library for matrix operations, where the main part of work is done. In the output I can see my function with a…
1
vote
1 answer

Change intel parallel Studio 2018 install directory

I am going crazy with the parallel studio installer. I installed some time ago PS2018.1 in a first directory. Now I would like to install PS2018.2 in another directory. The installer tells me that I cannot install PS2018.2 in another directory…
janou195
  • 1,175
  • 2
  • 10
  • 25
1
vote
1 answer

How to profile C++ code with Intel Parallel Studio XE?

I am newbie using Intel Parallel Studio XE. I have already use profiling tools for Java. I just need to use Yourkit with an open port to listen a port from the Eclipse IDE. But with Intel Parallel Studio XE I don't know how to work and the manual…
Felipe
  • 7,013
  • 8
  • 44
  • 102
1
vote
0 answers

Intel compiler 2018 syntax change

I'm evaluating IC 2018, while normally working with IC 2016 & MSVC & CLANG. IC 2018 seems not to cope with several things. First it doesn't like _Pragma, for instance: _Pragma("forceinline recursive") I need that to support multiple compilers like…
1
2 3 4