Reputation: 1248
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
Upvotes: 4
Views: 139
Reputation: 4929
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
Upvotes: 1