Hi,
I was wondering if you had any recommended way of using Intel MPI with C#?
The only resource that I found written by Intel was here. Which is a short tutorial that describes
"...how you reuse the shared Native App Logic across different operating systems. Native App Logic is the place [where] libraries like Integrated Performance Primitives and Threading Building Blocks fit in to make your apps run in the most optimized way for the underlying architecture."
The above article basically uses the DllImport Attribute (or P/Invoke) to make calls to native code (unmanaged code) from a managed application.
So to further on my question... Between these two options for doing this:
- Explicit P/Invoke (above)
- Implicit P/Invoke (aka. C++ Interop, or in my case I would require a C++/CLI wrapper)
What is the recommended way? Does a C++/CLI wrapper already exist?
Thanks!