Can i invoke sse command with c#???

  • Thread starter Thread starter Àä×ÔȪ
  • Start date Start date
C# is built on top of a VM, and doesn't let you get to a processor. You
could try using P/Invoke to run a C++ DLL that does what you need, or
spawn a process.

The compiler is probably built so that it takes advantage of SSE and
SSE2, if they exist in the processor.
 
Back
Top