1

Is it possible to run mono on intel's phi coprocessors? From what i have understood they are operating a form of Linux but i haven't managed to find a concrete answer. If it is possible, are there any sort of limitations/issues? I'm looking to run some C# code on them as i had heard there are no issues with warp divergence, or something similar.

Hans Rudel
  • 3,433
  • 5
  • 39
  • 62

1 Answers1

3

It is entirely possible to run mono on Phi due to the fact that it is just running a standard Linux kernel. Any specific shared libraries you need would also have to be compiled for mic and copied to the card as well.

sssylvester
  • 168
  • 6
  • can you use openMP on mono code? What's the tool chain? Or do you mean that you could run mono on the linux side of the phi but not actually use any of the other cores? Even gcc itself is particular about MIC code generation, from what I've read. – dethSwatch Aug 06 '15 at 20:50