4

I am working on a high performance scientific application and found that pushing the computations into Intel compiler gives a lot of speedups by generating fast code, vectorization and better auto parallelization. But my main application is till in Microsoft C++ and uses COM. My questions are

1) Is it possible to build an assembly in Intel C++ compiler and load it into an application built with Microsoft compiler? Will it have incompatibilities? 2) What is the level of support for COM in Intel compilers.

Any advice in this area is appreciated. Thank you

--Sai

pnuts
  • 58,317
  • 11
  • 87
  • 139
Sai Venkat
  • 1,208
  • 9
  • 16
  • Here is the reply I received from Intel. Intel compiler has 100% support for Microsoft compiler as long as we don't use /clr in compilation. – Sai Venkat Mar 08 '14 at 10:55
  • Why don't you post your comment as an answer to your own question? indeed from what I know the `Intel Compiler` is a native x86 compiler extension which simply uses advance techniques on `Intel` CPUs... it is not a new language – NirMH Jun 01 '14 at 08:52

1 Answers1

1

Posting Sai Venkat comment as an answer:

Here is the reply I received from Intel. Intel compiler has 100% support for Microsoft compiler as long as we don't use /clr in compilation

NirMH
  • 4,769
  • 3
  • 44
  • 69