”@

Home 

c++ Programming Glossary: icc

Why is processing a sorted array faster than an unsorted array?

http://stackoverflow.com/questions/11227809/why-is-processing-a-sorted-array-faster-than-an-unsorted-array

as fast as whatever VC and GCC can generate In other words ICC took advantage of the test loop to defeat the benchmark... If..

Macro / keyword which can be used to print out method name?

http://stackoverflow.com/questions/2192680/macro-keyword-which-can-be-used-to-print-out-method-name

compiler __PRETTY_FUNCTION__ GCC MetroWerks Digital Mars ICC MinGW __FUNCSIG__ MSVC __FUNCTION__ Intel and IBM __FUNC__ Borland..

How to perform atomic operations on Linux?

http://stackoverflow.com/questions/2287451/how-to-perform-atomic-operations-on-linux

there is an inline assembly library that does this for GCC ICC supports gcc assembly Edit There is a very partial solution..

pure/const function attributes in different compilers

http://stackoverflow.com/questions/2798188/pure-const-function-attributes-in-different-compilers

in such way for the different compilers i.e. GCC Clang ICC MSVC or others c gcc const function attributes share improve.. example with the GCC style attributes and it worked. ICC seems to adopt the GCC attributes Sorry only a forum post. MSVC..

Is this a bug in the Intel C++ Compiler at optimization level 2?

http://stackoverflow.com/questions/3527829/is-this-a-bug-in-the-intel-c-compiler-at-optimization-level-2

or release and also in GCC. It also does correctly for ICC with debug but not when optimization enabled O2 . #include cstdio.. to stoped at while q.isEmpty . When O2 enabled under ICC release however it starts to doSomething infinitely. Since this.. should be evaluated as true I can find no reason the ICC should behave in this way Do I miss anything c optimization..

MSVC equivalent of __attribute__ ((warn_unused_result))?

http://stackoverflow.com/questions/4226308/msvc-equivalent-of-attribute-warn-unused-result

MSVC as well as gcc and gcc compatible compilers such as ICC. Do the Microsoft Visual Studio C C compilers have an equivalent..

What std::locale names are available on common windows compilers?

http://stackoverflow.com/questions/4406895/what-stdlocale-names-are-available-on-common-windows-compilers

usable on common windows compilers such as MSVC MinGW and ICC c windows locale share improve this question I believe..

Standard container re-allocation multipliers across popular toolchains

http://stackoverflow.com/questions/5404489/standard-container-re-allocation-multipliers-across-popular-toolchains

So far I have Dinkumware 1.5 ships with MSVS and possibly ICC GNU libstdc 2 ships with GCC and possibly ICC RW Apache stdcxx.. and possibly ICC GNU libstdc 2 ships with GCC and possibly ICC RW Apache stdcxx 1.618 STLport 2 libcomo c implementation containers..

Why do I need to use typedef typename in g++ but not VS?

http://stackoverflow.com/questions/642229/why-do-i-need-to-use-typedef-typename-in-g-but-not-vs

typedef typename within templates while VS and I guess ICC don't. Is the typedef typename thing a bug or an overstrict.. The above code compiles in VS and probably in ICC but fails in GCC because it wants it like this template typename..

how to achieve 4 FLOPs per cycle

http://stackoverflow.com/questions/8389648/how-to-achieve-4-flops-per-cycle

to work well on Visual Studio 2010 2012 and GCC 4.6. ICC 11 Intel Compiler 11 surprisingly has trouble compiling it well...

CRTP: Compiler dependent issue with Expression Template

http://stackoverflow.com/questions/9738975/crtp-compiler-dependent-issue-with-expression-template

the expected behavior. When I use icpc icpc version icpc ICC 12.1.0 20110811 Copyright C 1985 2011 Intel Corporation. All..

OpenMP: for schedule

http://stackoverflow.com/questions/10850155/openmp-for-schedule

i printf 2 iter 0d tid 0d n i omp_get_thread_num return 0 icc openmp o dyn.x dyn.c OMP_NUM_THREADS 8 . dyn.x sort 1 iter 0..

Profiling the C++ compilation process

http://stackoverflow.com/questions/13559818/profiling-the-c-compilation-process

the C compilation process with common compilers such as g icc and xlC For instance is it possible to get an idea of how much..

C++ virtual table layout of MI(multiple inheritance)

http://stackoverflow.com/questions/15921372/c-virtual-table-layout-of-mimultiple-inheritance

For example MSVC and the Itanium ABI followed by gcc clang icc ... have different ways to implement this. With that out of..

Branchless code that maps zero, negative, and positive to 0, 1, 2

http://stackoverflow.com/questions/1610836/branchless-code-that-maps-zero-negative-and-positive-to-0-1-2

The actual numbers and winner varied depending on compiler icc gcc compiler options e.g. O3 march nocona fast xHost and machine...

Global qualification in a class declarations class-head

http://stackoverflow.com/questions/2781339/global-qualification-in-a-class-declarations-class-head

of interest Interestingly this compiles fine with VS2005 icc 11.1 and Comeau online but fails with GCC global qualification..

Is this a bug in the Intel C++ Compiler at optimization level 2?

http://stackoverflow.com/questions/3527829/is-this-a-bug-in-the-intel-c-compiler-at-optimization-level-2

behave in this way Do I miss anything c optimization icc share improve this question Because the while q.isEmpty..

prolonging the lifetime of temporaries

http://stackoverflow.com/questions/4670137/prolonging-the-lifetime-of-temporaries

report it. Clang gcc and MSVC do. I think that Comeau and icc would too. Foo const fooByIndirectReference Foo const foo fooByValue..

Using export keyword with templates

http://stackoverflow.com/questions/5416872/using-export-keyword-with-templates

end and thus only the compilers that use it Comeau and icc support this feature. The feedback from the implementers at..

std::function<> and the Intel compiler version 11.1

http://stackoverflow.com/questions/6527064/stdfunction-and-the-intel-compiler-version-11-1

share improve this question I get the same behavior with icc 11.1 on a system where gcc 4.5.2 is installed. g 's header functional.. __GXX_EXPERIMENTAL_CXX0X__ which is not defined when icc is used. I would consider switching to boost function in this..

Conversion operator template specialization

http://stackoverflow.com/questions/7741531/conversion-operator-template-specialization

error The above code generates a compiler error in g and icc both complaining that no user defined conversion is suitable..