Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Distributed computing framework in c/c++ [closed]

I am looking for a way to make distributed computing over a network (lan). Is there any good framework or a library for this purpose in C/C++.

like image 584
Ayoub M. Avatar asked Aug 01 '10 15:08

Ayoub M.


People also ask

What is distributed computing framework?

Distributed computing is a model in which components of a software system are shared among multiple computers or nodes. Even though the software components may be spread out across multiple computers in multiple locations, they're run as one system. This is done to improve efficiency and performance.

What is open distributed system?

An Open Distributed System is made up of components that may be obtained from a number of different sources, which together work as a single distributed system. In 1988 the International Standards Organization (ISO) began work on preparing standards for Open Distributed Processing (ODP).

What is a distributed application framework?

A distributed application consists of one or more local or remote clients that communicate with one or more servers on several machines linked through a network. With this type of application, business operations can be conducted from any geographical location.


2 Answers

Take a look at MPI.

like image 79
wilx Avatar answered Oct 07 '22 11:10

wilx


Yes. Have you looked at MPI via e.g. Open MPI ?

like image 5
Dirk Eddelbuettel Avatar answered Oct 07 '22 11:10

Dirk Eddelbuettel