|
More site info...
Intel® C++ Compiler | Forum profile
|
|
Forum profile page for Intel® C++ Compiler on http://www.intel.com.
This report page is the aggregated overview from a single forum: Intel® C++ Compiler, located on the Message Board at http://www.intel.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "Intel® C++ Compiler" on the Message Board at http://www.intel.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on Intel® C++ Compiler:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
13
|
132
|
358
|
|
Post:
|
29
|
273
|
747
|
|
|
Intel® C++ Compiler Posting activity graph:
|
Top authors during last week:
user's latest post:
Intel on Linux...what directory?
Published (2009-11-24 15:30:00)
When you install the IPP option which comes with the current compiler, the iccvars should include setting up for IPP. The specific required libraries may have changed; in particular, libiomp5 (which supports also gnu OpenMP compilations, or, on Windows, MSVC openmp) is preferred over libguide. If you set -openmp or -parallel as an icpc option in the link step, the OpenMP library and its dependencies are linked automatically. There may...
user's latest post:
Intel on Linux...what directory?
Published (2009-11-24 15:30:00)
Quoting - lkeene Hah! Of course. Thank you. Does anyone know of any knowledge base articles, or threads, etc that they can point me to to help me setup the environment for the IPP libraries? I need to point the Linker to several libs such as: "d:\RSI\IDL63\bin\bin.x86\idl.lib ippsemerged.lib ippsmerged.lib ippsremerged.lib ippsrmerged.lib ippmemerged.lib ippmmerged.lib ippcorel.lib libguide.lib" I'ts easy enough to do this in...
user's latest post:
icc: command line error: invalid...
Published (2009-11-24 03:08:00)
In 'man icc' i saw that iso9899:1990 is a -std=89 for icc. I try './configure CC=icc CXX=icpc CFLAGS="-std=89"' , but in this case i got the same error: configure:5686: icc -o conftest -std=iso9899:1990 -W -Wall -Wchar-subscripts -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2 -std=c89 -Wmissing-format-attribute conftest.c >&5 icc: command...
user's latest post:
Help with hitting maximum record...
Published (2009-11-21 11:25:00)
Quoting - jimdempseyatthecove Not having a failing case here I can only throw out suggestons (as I did with the } } }//barf) If the faulting text "} } }//barf" is generated by the precompiled headers (and you are editing the output) then I suggest you add something to the appropriate header file such that something additional is added there. As I said in an earlier post, I suspect the problem in the compiler was a buffer or line...
user's latest post:
ICC generates position-dependent...
Published (2009-11-23 03:06:00)
The -fpic compiler option is available in icc 10.1. You may use it for generating position independent code. $ icc -c -fpic mysource.cpp $ icc -V Intel(R) C Compiler for applications running on IA-32, Version 10.1 Build 20080312 Package ID: m_cc_p_10.1.014 Copyright (C) 1985-2008 Intel Corporation. All rights reserved.
user's latest post:
Error on partial template...
Published (2009-11-24 02:20:00)
Thanks Judith! But one more question. Should I repeat the complete matix definition (like all other member fuctions and the member variables) for each partial specialization?
user's latest post:
Intel on Linux...what directory?
Published (2009-11-24 13:31:00)
If it's the default dir, it's under /opt/intel/. To use, you need to run the script iccvarsXX.sh like: $ . iccvarsXX.sh Then you can use "icc" to compile .c code, "icpc" for .cpp code. Jennifer
user's latest post:
RTC failure on FD_ZERO in any...
Published (2009-11-24 01:50:00)
Quoting - Om Sachan (Intel) I can reproduce this in FC11 as well. The compiler behaviour is correct. If you do not use -check-uninit compiler option then the compiler does not check for the uninitialized variables and the compiled binary runs. Are you saying that there is a bug in FD_ZERO's implementation in glibc 2.10.x, that is FD_ZERO's implementation in glibc 2.10.x relies on unintialized data? Valgrind does not report it ......
user's latest post:
Help with hitting maximum record...
Published (2009-11-21 10:48:00)
Quoting - jlperla So there is no way to have it say "create if required and apply the same setting to all of the .cpp files? If I have "\Yc" in the compilation of a .cpp file and their have been no changes to the header files, will it always recompile it or just use it? Can I just put "\Yc" on all of my .cpp files and get the same usage? Also, I have a huge number of libraries being used and almost all of them are...
user's latest post:
Error on partial template...
Published (2009-11-22 12:26:00)
In C++ function templates cannot be partially specialized, but class templates can. Therefore, the workaround is to make a single generic function template that calls a member function of a generic class template. Then write a partial specialization for the class template that does what you want. In other words write a specialization of the Matrix class like this: template <class ELEMENT_TYPE, typename STORAGE_TYPE,...
|
|
|
|
Latest active threads on Intel® C++ Compiler::
Started 1 week ago (2009-11-24 13:31:00)
by Jennifer Jiang (Intel)
If it's the default dir, it's under /opt/intel/. To use, you need to run the script iccvarsXX.sh like: $ . iccvarsXX.sh Then you can use "icc" to compile .c code, " icpc" for .cpp code. Jennifer
Started 1 week ago (2009-11-24 07:08:00)
by tim18
icc supports only the most common gcc -W options, such as -Wall. If you don't want to tinker with this configury, I guess you'll have to resign yourself to seeing lots of warnings.
Started 1 week ago (2009-11-24 03:08:00)
by solunskiy.mitya
In 'man icc' i saw that iso9899:1990 is a -std=89 for icc. I try './configure CC=icc CXX=icpc CFLAGS="-std=89"' , but in this case i got the same error: configure:5686: icc -o conftest -std=iso9899:1990 -W -Wall -Wchar-subscripts -Wshadow -Wpointer-arith -Wmissing- prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2 -std=c89 -Wmissing-format-attribute ...
Started 1 week, 2 days ago (2009-11-22 12:26:00)
by Judith Ward (Intel)
In C++ function templates cannot be partially specialized, but class templates can. Therefore, the workaround is to make a single generic function template that calls a member function of a generic class template. Then write a partial specialization for the class template that does what you want. In other words write a specialization of the Matrix class like ...
Started 2 weeks ago (2009-11-17 05:52:00)
by tim18
Why not initialize it yourself, at least while using -check? Try several values to assure yourself the operation of your application doesn't depend on initial values.
Started 5 months, 3 weeks ago (2009-06-12 11:10:00)
by tim18
// this is an IE specific issue fix for HTML with " /" characters in it which IE looks at like " /" instead and does not line break it.
$(function(){
if ($.browser.msie)
$("[id^='reply_text_']") .css({"overflow-x":"scroll","overflow-y":""});
});
icc 11 has better compatibility with g++ 4.3 headers than icc 10.1 did. I...
Started 1 week, 1 day ago (2009-11-23 05:40:00)
by tim18
As Visual Studio doesn't support C99, the partial C99 support added by ICL fits in the "tacked on" category discussed at http://en.wikipedia.org/wiki/Stdint.h where some suggestions are given. You will find additional suggestions with your search engine. As ICL relies significantly on the C99 features, <stdint.h> does look like a suitable feature request, which...
Started 3 weeks, 6 days ago (2009-11-04 09:14:00)
by tim18
icc should observe the same options as gcc for generating pic code. The default (non-pic) would be expected to be the same as gcc. Reasons for the default likewise would be same as gcc, including performance of globally visible entry points.
Started 1 week, 5 days ago (2009-11-19 15:54:00)
by jlperla
Quoting - jlperla
I am using Intel 11.1 on Windows 7 x64 (doing a 32bit build with nmake). I am doing some heavy template metaprogramming, so perhaps the complete templates are getting long. After adding in some namespaces, I am now getting the error on debug compilation:
One more thing: It only seems to be happening when I use pre-compliled ...
Started 1 week, 5 days ago (2009-11-19 04:32:00)
by Smart Lubobya
Quoting - Smart Lubobya
can some one show me how to do a two 4x4 matrix multiplication using SSE instruction. codes should be compatible with c++ compiler
i have ready the pdf quoted but can not still understand how SSE are used. more light please
|
|
Hot threads for last week on Intel® C++ Compiler::
Started 1 week ago (2009-11-24 13:31:00)
by Jennifer Jiang (Intel)
If it's the default dir, it's under /opt/intel/. To use, you need to run the script iccvarsXX.sh like: $ . iccvarsXX.sh Then you can use "icc" to compile .c code, " icpc" for .cpp code. Jennifer
Started 1 week ago (2009-11-24 03:08:00)
by solunskiy.mitya
In 'man icc' i saw that iso9899:1990 is a -std=89 for icc. I try './configure CC=icc CXX=icpc CFLAGS="-std=89"' , but in this case i got the same error: configure:5686: icc -o conftest -std=iso9899:1990 -W -Wall -Wchar-subscripts -Wshadow -Wpointer-arith -Wmissing- prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2 -std=c89 -Wmissing-format-attribute ...
Started 2 weeks ago (2009-11-17 05:52:00)
by tim18
Why not initialize it yourself, at least while using -check? Try several values to assure yourself the operation of your application doesn't depend on initial values.
Started 1 week ago (2009-11-24 07:08:00)
by tim18
icc supports only the most common gcc -W options, such as -Wall. If you don't want to tinker with this configury, I guess you'll have to resign yourself to seeing lots of warnings.
Started 1 week, 2 days ago (2009-11-22 12:26:00)
by Judith Ward (Intel)
In C++ function templates cannot be partially specialized, but class templates can. Therefore, the workaround is to make a single generic function template that calls a member function of a generic class template. Then write a partial specialization for the class template that does what you want. In other words write a specialization of the Matrix class like ...
Started 1 week, 1 day ago (2009-11-23 05:40:00)
by tim18
As Visual Studio doesn't support C99, the partial C99 support added by ICL fits in the "tacked on" category discussed at http://en.wikipedia.org/wiki/Stdint.h where some suggestions are given. You will find additional suggestions with your search engine. As ICL relies significantly on the C99 features, <stdint.h> does look like a suitable feature request, which...
Started 5 months, 3 weeks ago (2009-06-12 11:10:00)
by tim18
// this is an IE specific issue fix for HTML with " /" characters in it which IE looks at like " /" instead and does not line break it.
$(function(){
if ($.browser.msie)
$("[id^='reply_text_']") .css({"overflow-x":"scroll","overflow-y":""});
});
icc 11 has better compatibility with g++ 4.3 headers than icc 10.1 did. I...
Started 3 weeks, 6 days ago (2009-11-04 09:14:00)
by tim18
icc should observe the same options as gcc for generating pic code. The default (non-pic) would be expected to be the same as gcc. Reasons for the default likewise would be same as gcc, including performance of globally visible entry points.
|
|