How to program Intel Xeon Phi with C #?

I am a C # programmer with C ++ experience, all on Windows.

With this skill set, are there any options for the Intel Xeon Phi processor?

Found a link, but not sure if this is the best / only way.

Thank you for your advice.

+8
multithreading c # xeon-phi
source share
1 answer

Check out the Programming Overview for Intel® Xeon® Processors and Intel® Xeon Phi Coprocessors for an overview.

From the section:

Compiler and Programming Models

There are several recommendations we can make based on what works well for developers. For Fortran programmers, use OpenMP, DO CONCURRENT, and MPI. For C ++ programmers, use Intel TBB, Intel Cilk Plus, and OpenMP. For C programmers, use OpenMP and Intel Cilk Plus.

Also from the same source:

Additional reading

Additional programming material for Intel Xeon Phi coprocessors can be found at http://intel.com/software/mic .

A new book, Intel® Xeon PhiTM Coprocessor High Performance Programming, Volume 1: The Basics, by Jim Jeffers and James Rainders, © 2013, published by Intel Press, is expected to be released in early 2013.

+4
source share

All Articles