Tagged Questions
ICC is Intel's C++ compiler, actually a group of C/C++ compilers that are available for Windows, Linux, and MacOS.
11
votes
4answers
176 views
puzzled by compiler warning that suggests compound assignment of int8_t promotes to int
I can usually understand the reason behind a compiler warning, but this one seems just plain wrong.
#include <stdint.h>
uint8_t myfunc(uint8_t x,uint8_t y)
{
x |= y;
return x;
}
...
9
votes
7answers
482 views
Is this a bug in the Intel C++ Compiler (ICC)?
The following testing code does correctly in VS either with debug or release, so does it in gcc. It also does correctly for ICC with debug, but not when optimization enabled (-O2).
#include ...
9
votes
3answers
461 views
Does gcc, icc, or Microsoft's C/C++ compiler support or know anything about NUMA?
If I have a multi-processor board that has cache-coherent non-uniform memory access ( NUMA ), i.e. separate "northbridges" with separate RAM for each processor, does any compiler know how to ...
6
votes
1answer
116 views
Combining the 'using' directive with partial overloading: gcc feature or intel bug?
I wish to use a set of libraries written in C++ with the Intel compilers. I've attached sample code which demonstrates the problem. There are many places in the libraries where they make use of ...
6
votes
4answers
198 views
Is a using-declaration supposed to hide an inherited virtual function?
struct level0
{
virtual void foo() = 0;
};
struct level1 : level0
{
virtual void foo() { cout <<" level1 " << endl; }
};
struct level2 : level1
{
virtual void foo() { cout ...
5
votes
4answers
355 views
Detect ICC vs GCC at compile time
How to detect at compile time if I'm using gcc or icc?
(I was quite puzzled to find out that icc defines __GNUC__ -- and even __GNUC_MINOR__ and __GNUC_PATCHLEVEL__ ! why?)
5
votes
2answers
263 views
Is there any client-side technology able to convert sRGB to CMYK through an ICC color profile?
Is there any technology available in a browser (client-side) able to convert sRGB colors to CMYK and vice versa using a specified ICC color profile?
I'm currently using a hidden Java applet for the ...
5
votes
3answers
3k views
ICC vs GCC - Optimization and CPU architecture
I'm interested in knowing how GCC differs from Intel's ICC in terms of the optimization levels and catering to specific processor architecture. I'm using GCC 4.1.2 20070626 and ICC v11.1 for Linux.
...
5
votes
4answers
327 views
Is it possible to prevent an RAII-style class from being instantiated “anonymously”?
Suppose I have an RAII-style C++ class:
class StateSaver
{
public:
StateSaver(int i) { saveState(); }
~StateSaver() { restoreState(); }
};
...to be used like so in my code:
void ...
4
votes
1answer
99 views
Intel icc: how to dump optimized code as C file
Gcc's -fdump-tree-optimized option dumps an optimized version of your C code as a C file. Is there a way I can do the same using intel's icc compiler?
I have a matrix multiplication code that I have ...
4
votes
3answers
204 views
Intel C/C++ linker using MinGW library
Can Intel linker on Windows use a static library compiled by MinGW? Are they binary compatible? On Wikipedia and in one "White paper", they say on Linux yes, but what about Windows and the newest ICC ...
4
votes
2answers
307 views
Eclipse CDT + ICC compiler
Is it possible to use Intel C++ compiler (icc) in Eclipse (CDT) on Windows? How?
4
votes
4answers
381 views
Can Adobe Air do this?
I've written a lot of JavaScript before, and adobe air looks really interesting, my question is can Adobe Air:
Access ICC profiles stored on a users computer
Detect which ICC profile the monitor is ...
4
votes
2answers
145 views
Achieving Colour Consistency Across Different Monitors
I have an SWF file with only vector illustrations in it (no bitmaps). Is there a way to improve colour consistency across different monitors?
Colour management is a very complex topic and the more I ...
3
votes
2answers
1k views
C++ memory alignment question
A line of code is worth a thousand words :) Here is my problem:
/* Platform specific 16-byte alignment macro switch.
On Visual C++ it would substitute __declspec(align(16)).
On GCC it ...
3
votes
4answers
181 views
What are good heuristics for inlining functions?
Considering that you're trying solely to optimize for speed, what are good heuristics for deciding whether to inline a function or not? Obviously code size should be important, but are there any other ...
3
votes
3answers
4k views
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 because I'm using icc, not gcc, how do I do it? Let's say it's a std::vector for the sake of simplicity.
...
2
votes
1answer
96 views
How do you get the ICC compiler to generate SSE instructions within an inner loop?
I have an inner loop such as this
for(i=0 ;i<n;i++){
x[0] += A[i] * z[0];
x[1] += A[i] * z[1];
x[2] += A[i] * z[2];
x[3] += A[i] * z[3];
}
The inner 4 instructions can be easily converted to ...
2
votes
1answer
177 views
Segfault occurs when my shared library is optimized by icc -O3 or -O2 and used via Python ctypes
This behavior is strange because I could not get the segfault
if the shared library was compiled without or with weaker optimization (-O0 or -O1)
if the shared library was compiled with gcc, even ...
2
votes
1answer
309 views
Compiling with icc -static issue
I have been using ICC to compile a program I wrote for my research (nothing impressive just a lot of floating point calculations) and I can compile it just fine using:
g++ -O3 mixingModel.cpp ...
2
votes
1answer
297 views
Intel C Compiler and L“” prefix
How can I define russian strings in Intel C Compiler?
In MSVS 2008 I do so:
_wsetlocale(LC_ALL, L"Russian");
wprintf(L"текст");
And it works.
In ICC in doesn't work.
2
votes
2answers
1k views
How to compile OpenCV with ICC?
I am trying to compile OpenCV with icc on Linux, in order to profile the execution with intel tools.
I installed the last version of icc with default options. I tried both "user" (icc is installed in ...
1
vote
1answer
61 views
ICC, GCC and OpenMP
I am launching a given problem that parallelizates by means of OpenMP. It runs a given number of iterations of the same piece of code that processes a volume of data. Is in that level where OpenMP is ...
1
vote
1answer
223 views
g++ and boost linker error on Ubuntu oneiric
I am getting the following errors after an upgrade. I cannot figure what is wrong with it. It should work as far as I can see.
$ make 2>&1 | head
g++ -o prog -ansi -O2 -Wall ...
1
vote
1answer
85 views
OpenMP bug with Intel Compiler?
The following piece code
#pragma omp parallel
printf("%f", 1.0f);
produces the a "Floating point exception". Has anyone encountered anything like that?
More details:
No problems when I try to ...
1
vote
0answers
129 views
Using EXIFTool to create sRGB images?
I would like to ask a question about sRGB, ICC profiles, and exiftool.
I've found that you can use exiftool to embed sRGB profiles into images. Does this mean I can create a picture in Paint.NET and ...
1
vote
2answers
196 views
C++0x issue on ICC compilation
for each (auto obs in observers)
*obs = true;
i have problem with this compiling with icc.
error : cannot deduce "auto" type (initializer required)
please help to solve the above issue. ...
1
vote
3answers
402 views
gcc/g++ versus icc [closed]
Which is more popular in the industry software development business? Some people argue gcc/g++ is more popular on linux, while icc is more popular on windows. Anything else to choose one over the ...
1
vote
2answers
621 views
How do I use ICC profiles on the iPad/iPhone?
right now I'm implementing a basic PDF viewer, and I came across the problem that some files are displayed with wrong (too intense, too bright) colors for text and vector graphics when rendered on the ...
1
vote
2answers
224 views
Why would gcc -o0 be faster than icc -o0?
For a brief report I have to do, our class ran code on a cluster using both gcc -O0 and icc -O0. We found that gcc was about 2.5 times faster than icc without any optimizations? Why is this? Does gcc ...
1
vote
1answer
208 views
Link to libraries built by GCC when I use ICC for my code
For a personal project on Linux, I would like to use ICC. My project uses Boost, Qt and several other libraries. These libraries are available on Ubuntu repository so I would like to save time by ...
1
vote
1answer
300 views
Xcode Intel compiler icc cannot find #include <algorithm>
Hi I'm trying to compile a gcc based code on Xcode with the icc compiler (11.1.088)
but i have the following error:
catastrophic error: could not open source file "algorithm"
After looking to this ...
1
vote
2answers
108 views
Can Java do this?
I need to write a Java web applet (if this can't be done via web applet can it be done another way?)
It's been a long long time since I've touched Java so sorry if my terminology is wrong, I'm going ...
1
vote
1answer
232 views
Coldfusion 9 CFIMAGE ICC Profiles - Not supported, y? & How to Resolve?
Im running CF9 and just learned that CF9's CFIMAGE tag does not support ICC Profiles, which makes the "capability" pretty worthless on the Mac, which adds ICC Profiles to all screengrabs.
has anyone ...
1
vote
3answers
183 views
Are macro definitions compatible between MIPS and Intel C compiler?
I seem to be having a problem with a macro that I have defined in a C program.
I compile this software and run it sucessfully with the MIPS compiler.
It builds OK but throws the error "Segmentation ...
1
vote
1answer
71 views
What do I need to look out for when I switch compilers from GCC 3.4.2 to a GCC 4.4.2 or to ICC?
The project I'm working with is compiled with GCC 3.4.2. I'm considering switching to a newer compiler. However, the project is at a stage where we're not making any big changes if the risks aren't ...
1
vote
1answer
1k views
How to disable remark “LOOP WAS VECTORIZED” written by Intel compiler?
I want to disable remark "LOOP WAS VECTORIZED" written by Intel compiler.
But I don't want to disable optimazation.
What do I need to do?
1
vote
2answers
664 views
How do I remove color (colour) profile information from images using .NET?
I have a tool which manipulates images at runtime as part of my web app.
This generally works fine, but with the release of Firefox 3.5 we're seeing some colour problems. I believe this is because ...
0
votes
0answers
31 views
gdb - no debugging symbols found - but debugger works anyway
I thought that in order to make debugging possible with gdb, it needed to find the debugging symbols, but gdb apparently just works without them (?).
I am mixing c code and fortran code. Today my goal ...
0
votes
0answers
19 views
ICC inline assembler doesn`t like push/pop
I try to excute assembler inline with icc in msasm:
int main (void)
{
__asm{
mov eax, 5h; //works
push eax; // after shell command /opt/intel/bin/icc -use_msasm asm.c:
...
0
votes
0answers
18 views
icc not working on linux
I just installed intel compiler 11 for linux but have this weird problem on compiling a test program using icc.
I wrote a hello world program like this:
#include "stdio.h"
int main() {
...
0
votes
1answer
10 views
icc compiler and strtok
When I try to compile my code with icc I get an error (compiling on a HPC cluser):
properties.cpp(51): error: identifier "strtok" is undefined
I think this is an issue of missing header, however, ...
0
votes
1answer
77 views
Using -fast option with Intel ICC compiler
When I use the -fast option in the ICC compilation command under Linux, I get this error:
ld: cannot find -libcm
Any suggestions?
0
votes
0answers
65 views
boost::geometry::area failing to compile on intel compiler
(Split from an earlier question).
Does anyone know what's going on here? The following code works fine in MSVC but not on the intel compiler.
//code to calculate area of convex hull from a set of ...
0
votes
0answers
67 views
How to get embedded ICC profile of image in java
I am processing jpegs with different ICC profiles. Since I load them the embedded ICC profiles are deleted. But i need them afterwards.
How should I proceed?
0
votes
0answers
56 views
compiling GSL-1.15 with icc 2011 sp1
i followed this to compile gsl with icc http://www.mail-archive.com/help-gsl@gnu.org/msg03587.html
i use icc because it's faster for computations than gcc and it's still free (i'm in academia).
i ...
0
votes
1answer
92 views
STLPort, Intel compilers, build errors (though app runs fine!)
Compiling my project against STLPort I get some weird build errors. Weird, because the project runs just fine (and 20-30% faster) though you'd think the build errors would be fatal.
Can anyone ...
0
votes
0answers
73 views
How can I state file-specific compiler command line options? (ICC)
I'm using LLVM and it outputs lots of warnings about possible loss of precision when using arithmetic operators (like, assigning 255 to an unsigned char - this is int to unsigned char!).
I would like ...
0
votes
0answers
117 views
Visual Studio 2010 + Intel Composer 2011 XE always compiles every file in my source
Problem: Visual Studio 2010 and Intel Composer XE 2011 (trial) always recompile every source file in my solution even when I have only changed a small subet.
Steps to reproduce:
Build project, ...
0
votes
1answer
64 views
where to download icc 10.1 compiler
I am looking to download icc 10.1 compiler. Intel has an upgraded version now available for download. I was unable to find this on their website. I am really grateful if one can help me with this.
...