Top "Icc" questions

ICC is Intel's C++ compiler, actually a group of C/C++ compilers that are available for Windows, Linux, and MacOS.

Simplest TBB example

Can someone give me a TBB example how to: set the maximum count of active threads. execute tasks that are …

c++ tbb icc
Pass lambda expression to lambda argument c++11

I would like to do something like this: int main() { auto f = [/*some variables*/](/*take lambda function*/) {/*something with lambda …

c++ c++11 lambda icc
Why does NaN - NaN == 0.0 with the Intel C++ Compiler?

It is well-known that NaNs propagate in arithmetic, but I couldn't find any demonstrations, so I wrote a small test: #…

c++ c floating-point ieee-754 icc
Setting up G++ or ICC for mpi.h on Ubuntu

I have never done any major programing outside of VS08. I am trying to compile a program called LAMMPS with …

linux g++ ubuntu-10.10 include-path icc
How to create a executable hex from elf file format

I am very very new to this, I have elf file input.out and need to create hex executable from …

linux gcc elf icc objcopy
Cannot open source file "bits/c++config.h" error with icpc

I am trying to compile a program on a 64-bit machine with icpc. Unfortunately, I get an error message of …

c++ ubuntu gcc icc ubuntu-13.10
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. …

linux compiler-errors configure icc
How do I examine the contents of an std::vector in gdb, using the icc compiler?

I want to examine the contents of a std::vector in gdb but I don't have access to _M_impl …

c++ stl vector gdb icc
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 …

c++ linux openmp icc intel-parallel-studio
How to allocate 16byte memory aligned data

I am trying to implement SSE vectorization on a piece of code for which I need my 1D array to …

c memory sse icc