Questions tagged [intel-composer]

28 questions
0
votes
0 answers

Making Xcode custom output "clickable" to the code line

I have a custom build step that may produce errors. The build is actually an Intel Compiler for C++, and the errors have the form: MyCode.cpp(18): error #77: this declaration has no storage class or type specifier Since this is not a native…
gil_mo
  • 575
  • 1
  • 6
  • 27
0
votes
0 answers

Using SVML intrinsics in Clang/MSVC

I own Intel Parallel Studio 2016, but I find the compiler way too slow, unreliable and actually providing worse code than Clang, but the SVML is a great thing, so I'm trying to use it via Agner Fog's VectorClass (https://www.agner.org/optimize/).…
Vojtěch Melda Meluzín
  • 1,117
  • 3
  • 11
  • 22
0
votes
0 answers

Intel compiler 2018 error : No instance of function template matches the specified type

I'm trying the new Intel compiler 2018 a unlike every other compiler I have here this piece of code fails: template double msqrT(double a) { return mpow(a, (double)power); }; template<> double msqrT<2>(double a) { return a*a;…
Vojtěch Melda Meluzín
  • 1,117
  • 3
  • 11
  • 22
0
votes
0 answers

std::array, operator overload not working with Intel Compiler 15.0 on linux

In my current project, I overloaded the std::array operators. Here an example of the minus : template std::array operator-(std::array& arr1, std::array& arr2) { std::array dst; for ( auto itArr1 =…
Vuwox
  • 2,331
  • 18
  • 33
0
votes
1 answer

Intel compiler in visual studio not finding boost libraries

I am trying to install mlpack in vs2013. msvc2013 is not compatible, so I am using Intel C++ compiler XE 14.0. However, Intel compiler is not finding the boost libraries. Using only MSVC - C:\projects\mlpack-2.1.1\build> cmake -G "Visual Studio 12…
Sashank
  • 590
  • 7
  • 22
0
votes
1 answer

Fortran write inserts 2 newlines w

In a simple test routine i am curently writing in Fortran90, the string output is longer than the screen. When using the standard write(,) statement, the output in the Instead of simply add a new line and continue on the next line, a second newline…
Odeul
  • 3
  • 1
0
votes
0 answers

Intel C++ linker manifest error

I'm try to build project, previously designed for MSVS 2013 C++ Compiler with Intel C++ Compiler 2015. I had created new project configuration called 'Unicode ICC Release' as a copy of standard 'Unicode Release' configuration. And after that I had…
Geralt
  • 1
  • 1
  • 4
0
votes
1 answer

installing Rcpp on R compiled with intel composer on OSX Yosemite

Inspite of succeeding with the compilation of R-3.1.2 using the intel suite of compilers ver.2015.0.077 including MKL on my late 2014 MacBook Pro running Yosemite (outlined here), I am unable to install the excellent Rcpp package that I have been…
marital_weeping
  • 618
  • 5
  • 18
0
votes
1 answer

Intel Compiler Warning with MIC - missing Libraries

While compiling+linking some MIC (Intel Xeon Phi coprocessor) code, I got this warnings. x86_64-k1om-linux-ld: warning: libimf.so, needed by /usr/local/Intel/parallel_studio_xe_2013_sp1/composer_xe_2015.0.090/compiler/lib/mic/liboffload.so.5, not…
SScholl
  • 598
  • 6
  • 19
0
votes
1 answer

Codeblocks can't find Intel C++ compiler (Linux Mint)

Codeblocks (v13.12) can't find my installation of the Intel C++ compiler. I have the bundled version of icc that comes with Composer XE, which I believe is the only way to currently get it. When I go into Codeblocks' toolchain settings I see that…
user3540
  • 3
  • 3
0
votes
1 answer

Long building time with release configuration. is it normal?

I use the latest Intel compiler atop MVS 2013. I am developing a small application which currently consists of a static library with main functionality (9 classes) and an one-file console executable to test the former. I decided to build the…
Andrey Pro
  • 501
  • 1
  • 10
  • 22
0
votes
1 answer

Setting environment variables for Fortran XE Composer 2013 SP1.2.144 compiler for 64b

I've successfully installed l_fcompxe_2013_sp1.2.144 for my Linux ubuntu 64 bits i5. To setup environment variables I've changed to root and run ./compilervars.sh intel64 ./compilervars_arch.sh intel64 located in folder…
JoeCoolman
  • 512
  • 3
  • 8
  • 27
-1
votes
1 answer

How to lower error check level in Intel C\C++ compiler

I'm trying to compile a simple test project with Intel C\C++ compiler on Visual Studio 2013. I have coded this test on linux, where gcc compiles the code without any error, and the application runs fine, but intel compiler on VS 2013 returns me…
AndreaF
  • 11,975
  • 27
  • 102
  • 168
1
2