assertion failed: lower_constant (Internal Compiler Error?)
Hi,I am getting the following error: error : assertion failed: lower_constant: bad kind (shared/cfe/edgcpfe/lower_il.c, line 5639)From previous threads, I assume this is an internal compiler error. The...
View ArticleError in Intel C++ compiler 16.0 in enumeration checking
I have a piece of code that successfully compiled by Xcode native complete in c++14 mode. The attempt to compile it with icc with -std=c++14 give the following...
View ArticleCompilation under Xcode failed
I have a file that could be successfully compiled with Xcode native compiler. My attempt to switch project to the ICC fails, because of all files complied in the following way:CompileICC...
View ArticleFeature Request: Better Warning for Invalid `alignas(...)`
If you do something like `alignas(sizeof(NonPoTStruct))`, you get: error : invalid alignment value specified by attributeThis says what is wrong, but isn't very useful. As a hopefully minor tweak, how...
View ArticleBug: constexpr fails on a constant
See the following example:#include <climits> #include <cstddef> #include <type_traits> template <int n> class MyClass { public: //See: http://stackoverflow.com/a/21298525/688624...
View ArticleICC 16.0.2 incorrect error on anonymous union initialization
Hello, I've run into a compile error with icpc 16.0.2 that I think is incorrect. If I have an anonymous union in a class the compiler only considers it intialized if I initialize the first data...
View ArticleIssues following the tutorial
hi guys, I am quite new to the Intel C++ Compiler and am trying to get through the the tutorial for 'Threading your application'. I have installed the Intel Parallel Studio XE 2016 Composer Edition on...
View ArticleUsing newer version of gcc compilers on Centos 6.x (devtoolset-3) with icc
Our primary development platform on Linux is Centos 6.7 with Composer XE 2015 - the default gcc version is 4.4.7. We need to use C++11 and STL features as supported by gcc 4.9.2. This gcc version can...
View ArticleIssue installing Parallel Studio 2016 update 3 Cluster Edition
Hi, I have an issue installing Parallel Studio 2016 update 3 on windows 10. I have Visual Studio 2015 installed in my PC. The error is.Intel(R) Parallel Studio XE 2016 Update 3 Cluster Edition for...
View ArticleHard-wire 1 thread/core into an OpenMP application
I would like to to hard-wire the number of threads per core (along with affinity) into an executable using OpenMP, so that 1 thread per core would be usedRegardless of how many physical cores the...
View ArticleParallel build with prof-gen=srcpos option not working?
I am working on code coverage for a large project. We build our project which contains hundreds of cpp/h files spread in different directories. I build our project using latest icpc with options...
View Articleicc (16.0.1) w/ gcc 4.8.3 compatibility cannot compile std::unorded_map with...
Hello,icc version 16.0.1 w/ gcc 4.8.3 compatibility:cpc -v -E -x c++ - < /dev/null |& head -n1 icpc version 16.0.1 (gcc version 4.8.3 compatibility)cannot compile the following snippet of code...
View ArticleIntel C++ Compiler 16.0.3 fails to compile valid code if copy constructor is...
The Intel C++ Compiler version 16.0.3 fails to compile the following code (The same code compiles fine with ICC 16.0.2):class TestClass { public: // default constructor, destructor, move constructor,...
View ArticleIntel C++ 16.0 Error : Unable to Obtain mapped memory (see pch_diag.txt)
We just upgraded to Intel Parallel Studio XE 2016 Update 2 Professional Edition- C++ for Windows version. OS on all machines is Win7- 64 SP1 Enterprise version, 8GB RAM, Visual Studio 2012 Update 4....
View ArticleError Detection
Hey I was writing a code and made an error detection but its not working can someone help me ?void addShip() { string custName,destName; int custID,destID,find,counter=0,shipID=1001; double...
View Articlewhat replaces old libguide_stats.a?
I have an old package, which was written for old Intel compilers (version 9 or 10). When building it with something newer, it fails to linklibguide_stats.aWhich no longer exists in Composer XE 2013....
View Articlegenerated code depends on where I compile?
I have noticed something strange. We use icc version 2016.1.150 to compile our code. I have compiled the same source code on 4 different linux machines. All of them are running redhat, though different...
View ArticleAddintional Option for Mic Offload Linker in MSVS IDE could be buggy?
I pass the issue from MKL forum https://software.intel.com/en-us/forums/intel-math-kernel-library/topic/628062 to Intel Compiler forum.Please help.We installed Parallel Studio XE....
View ArticleIPP library optimization based on CPU type
Hello,I saw the ippGetCpuFeatures() regarding IPP library as below but I'm wondering about IPP optimization.ippGetCpuFeatures() (*) that can be used to detect your processor features. It is declared...
View ArticleICPC read linker commands from file
Hello,I want to read linker commands from a file by the option -T but there is a syntax errorld:linkerCommands:1: syntax errorCalled command is: icpc ... -TlinkerCommandsWhere the file "linkerCommands"...
View Article