Microsoft API for concurrent programming in C

Is there any Microsoft API for C programming in parallel?

thanks for any answers

bye

+3
source share
4 answers

Yes, they implement OpenMP version 2. Run here.

+5
source

Visual Studio 2005, Microsoft Visual ++ OpenMP 2, " " C. ( ++, Fortran.)

Also see this tutorial , which describes both network and multiprocessing parallelism, citing:

"In this tutorial, written for the C and C ++ developer, we will take a look at the steps for developing, writing, debugging, and profiling a parallel application for Windows HPC Server 2008."

+2
source

The Microsoft Windows version of HPC Server includes an MPI implementation for distributed memory programming.

0
source

Source: https://habr.com/ru/post/1771441/


All Articles