The C++ compiler in the Intel compiler suite

learn more… | top users | synonyms

1
vote
1answer
37 views

Square root of complex numbers - g++ vs icpc

A rather basic question but I am a little bit lost here. I am working on a library, which works with complex numbers. So far I used my implementation under Mac OS 10.8 and Ubuntu 10.04 (by using ...
2
votes
1answer
56 views

How to optimize a C++ program with intel compiler on AMD chips

Newbie here. I have a big finite analysis code that needs to be run with high performance computing. People keep telling me Intel compiler usually gives better speed (I used to use gcc before). And I ...
0
votes
1answer
43 views

intel icpc compiler errors with boost on ubuntu

I'm trying to get Boost working with Intel's compiler icpc on Ubuntu. My admin installed the package from this webpage. I'm trying now to run a basic example from the Boost's webpage, compiling as ...
5
votes
1answer
121 views

C++ exception and ld symbol warning

I am playing with creating exceptions in C++ and I have the following test code: #include <iostream> #include <stdexcept> #include <new> using namespace std; class Myerror : public ...
-1
votes
1answer
277 views

int128 on Linux for Intel compiler

Linux 2.6.32 Intel compiler: icpc version 13.0.1 (gcc version 4.4.6 compatibility) #include <iostream> #include <sys/types.h> int main() { std::cerr << sizeof (__uint128_t) ...
0
votes
0answers
42 views

Intel icpc compiler raises SIGPFE if log10 is called and iostream is included

I'm testing the icpc compiler and found a curious case: if I compile the code below #include <math.h> #include <cstdio> #include <cstdlib> #include <fenv.h> #include ...
0
votes
1answer
338 views

configure: error: C preprocessor fails sanity check

I am compiling several libraries on Ubuntu 12.04 x86_64. First I compiled the libraries with GCC 4.7.2 and it went all well. Then I tryed to recompile them with Inte Composer 2013 u2. Fot that purpose ...
0
votes
0answers
75 views

How to switch my gcc-cdt-eclipse Makefiles to icc/icpc

My question is the following : I have developed a project using the very last version of eclipse + eclipse CDT, where all files are written in C++. I do not have the Intel compilers on my desktop ...
2
votes
1answer
90 views

Set compiler name in the Makefile

I have a Makefile suppose to compile my app in multiple host, some of them has built in intel compiler (icpc) and others just have g++. I would like that makefile automatically detect availability of ...
3
votes
1answer
86 views

what's the correct default value for an r-value reference argument?

Suppose I have a function that takes an r-value argument and I want to provide a default value, how do I correctly specify that? The following works fine with gcc 4.7.0, but fails with icpc 13.0.1. ...
1
vote
1answer
157 views

Using icpc with the gnu libstdc++in a nonstandard location

I'm trying to use icpc with c++11 features, however I need a c++11 stdlib, which intel doesn't provide. I'm running as a user on RHEL 6, so the systems libstdc++ is out of date. There is a newer ...
1
vote
1answer
112 views

non-dynamic constructors in c++ with icpc?

Is there a way to define a non-dynamic constructor which restricts the range of whichever default constructor lets me do struct foo { int *bar; }; static __thread foo myfoo[10] = {nullptr}; ? ...
2
votes
2answers
81 views

Not able to locate a header file

I am not able to locate a particular header file on disk, while my compiler (icpc) includes it without any errors. How can I find the header file? I tried querying the preprocessor for the header ...
4
votes
1answer
122 views

Friend function default template : Intel ICPC warning

I have the following test code : // friendfunction.h #include <iostream> template<typename T, unsigned ...
0
votes
1answer
260 views

Intel C++ compiler can't handle deep templates?

I have a project in C++ using marray library. For now it compiles and runs quite fine with MinGW g++ 4.7 and msvc2010 on Windows 7 x64 and also with g++ 4.7 on Linux Mint x64. I decided to give a try ...
0
votes
1answer
83 views

ICC library search options

GNU compilers use -llib options to link with libs, is there something similar in icpc? (I already have specified the -L option to add my lib in the search path).
5
votes
1answer
2k views

Simplest TBB example

Can someone give me a TBB excample how to: set the maximum count of active threads. execute tasks that are independent from each others and presented in the form of class, not static functions.
1
vote
1answer
93 views

How can you extract typedef'd information from a class that is inherited through templates?

I have a question about extracting typedef'd information from a class inherited through templates. To illustrate my question, consider the following simple example: #include <iostream> class ...
1
vote
2answers
160 views

ISO C++ standard conformant result of the following code

#include <iostream> template< typename U > struct base { template< typename T > base const & operator<<( T x ) const { std::cout << sizeof( x ) ...
0
votes
2answers
402 views

How to use gcc inline assembly in icc?

I have a C code with inline assembly in gcc inline assembly style, but I would like to compile it with icc. The code: asm goto("1: jmp %l[t_no]\n" "2:\n" ".section ...
2
votes
2answers
837 views

icpc C++11 with gcc stdlib

I am using icpc (non optional) and I am compiling with -std=c++0x so I can use lambas. However when I do so it creates havok with gcc stdlib with features that one supports that the other doesn't. ...
2
votes
5answers
957 views

Where does Intel C++ Compiler store the vptr ( pointer to virtual function table ) in an Object?

Where does Intel C++ Compiler store the vptr ( pointer to virtual function table ) in an Object ? I believe MSVC puts it at the beginning of the object, gcc at the end. What is it for icpc ( Intel ...