gruber
gruber

Reputation: 29789

Microsoft API for parallel programming in C

Is there any Microsoft API for parallel programing in C language ?

thanks for any answers,

bye

Upvotes: 3

Views: 481

Answers (4)

High Performance Mark
High Performance Mark

Reputation: 78364

Microsoft's Windows HPC Server version includes an implementation of MPI for distributed-memory programming.

Upvotes: 0

Prof. Falken
Prof. Falken

Reputation: 24937

Since Visual Studio 2005, the Microsoft Visual C++ compiler has supported OpenMP version 2, which is a "multi-platform shared-memory parallel programming" API for C. (And C++ as well as Fortran.)

Also see this tutorial which describes both network and multiprocessor parallelism, quoting:

"Written for the C and C++ developer, this tutorial walks you through the steps of designing, writing, debugging and profiling a parallel application for Windows HPC Server 2008".

Upvotes: 2

Hans Passant
Hans Passant

Reputation: 942508

Yes, they implement OpenMP version 2. Start reading here.

Upvotes: 5

Related Questions