Questions tagged [intel-composer]
28 questions
4
votes
0 answers
TravisCI with Intel compiler
Does anyone have a solution for using intel tools (ifort and icc) on TravisCI? The problem is in getting the compilers on to the image and obtaining the proper license.
Here's a shell script which installs Intel 2016 and I've been passing a…

raf
- 535
- 4
- 18
3
votes
0 answers
since boost 1.74: compile errors building code using boost-asio with intel-18.0-vc14
I built boost 1.74 with Intel c++ 2018 (update 2) with VS 2015 (the intel-18.0-vc14 toolset) in release x64
when I try to build code that uses ASIO with the intel c++ compiler with VS2015 integration, I get loads of compile errors.
when I try to…

dyoll
- 187
- 2
- 6
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…

Buddhika Chaturanga
- 957
- 2
- 14
- 29
2
votes
2 answers
Intel Compiler uses wrong header
I am trying to find out why the Intel Compiler 18.0, which got installed after my Visual Studio 2017 installation, uses the header files of MSVC, instead of it's own one (since it results in errors).
A simple #include triggers this error in…

Daniel Stephens
- 2,371
- 8
- 34
- 86
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…

MALLASARJ SULEBHANVI
- 13
- 5
1
vote
0 answers
Creating a universal binary using Intel compiler
In MacOSX, gcc command line accepts multiarchitecture options:
gcc -arch i386 -arch x86_64 etc.
... and creates a universal binary by compiling and linking for both archs and running lipo for gluing them together.
However using this command line…

gil_mo
- 575
- 1
- 6
- 27
1
vote
0 answers
Alternative to Intel C++ compiler for Windows and OSX, which provides CPU dispatching
I'm quite honestly sick of Intel compiler now, because it's just buggy, sometimes just generates incorrect crashing code, which is especially bad, since the compilation takes like 2 hours, so there's really no way to try to get around it. Profile…

Vojtěch Melda Meluzín
- 1,117
- 3
- 11
- 22
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…

Vojtěch Melda Meluzín
- 1,117
- 3
- 11
- 22
1
vote
0 answers
Error using mex LINK : fatal error LNK1104: cannot open file 'ifconsol.lib'
In MATLAB 2015a, When I use the mex -output command with some parameter, I get this error:
Building with 'Microsoft Visual C++ 2013 Professional'.
Error using mex
LINK : fatal error LNK1104: cannot open file 'ifconsol.lib'
I know that this…

Aref Hemati
- 337
- 2
- 14
1
vote
0 answers
Intel compiler "runtime CPU dispatching" feature: Broken on non-SSE2 processor?
So we want to use Intel C compiler with runtime CPU dispatching enabled (this is on Windows platform). We use the options /arch:IA32 plus /QaxSSE2, but no /QxFoo option. This should - to our understanding - produce a binary that runs on any IA32…

Niklas Förster
- 11
- 1
1
vote
0 answers
Can a stack overflow be sometimes misinterpreted by the compiler as an Access violation?
I have a fortran code compiled with Intel fortran compiler 2013 and VS2010 under windows 7 that started to give me unhandled exceptions without showing the line in which the code was crashing. Usually an error like this was showing up:
Unhandled…

Millemila
- 1,612
- 4
- 24
- 45
1
vote
1 answer
Intel C++ optimizer removes masm code
I recently started using the Intel C++ compiler for some of my projects, while also learning masm assembly. I kept on hearing how it wasn't worth learning assembly since the compilers do a good job anyway of optimizing code, and so thought about…

Sbspider
- 389
- 5
- 14
1
vote
0 answers
no output with wide streams
I have a problem with wide stream output. My primary concern is wofstream but wcout doesn't work properly either.
So it doesn't produce output besides Latin characters.
That is
#include
#include
#include
using…

Andrey Pro
- 501
- 1
- 10
- 22
1
vote
1 answer
Debugging Intel Compiled Project with GDB
I've got a simple Hello World project in the Code::Blocks IDE which I'm compiling using the Intel C++ compiler.
I've set the compiler option '/Zi' in the projects Build Settings so I can debug the application with breakpoints. However no breakpoints…

DundeeDave
- 73
- 1
- 7
1
vote
2 answers
Scalapack not present in Intel MKL on OSX?
I installed ifort composer 2013 SP1 update 1 (103) on OSX 10.8, but apparently I don't have scalapack libraries. Is scalapack not provided on OSX (it is on linux/win) or am I doing something wrong?

Stefano Borini
- 138,652
- 96
- 297
- 431