Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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++.

share|improve this question
3  
A bit more information about what you are trying to do would help. Are you trying to distribute a single, tightly coupled computation? Implement a client-server arrangement. Farm out independent tasks? Are all of the machines you want to use under your control, or are they desktops that need to be shared with there owners? There are different approaches that are geared specifically to each one of these, and more. – KeithB Aug 1 '10 at 15:58

3 Answers

up vote 6 down vote accepted

Take a look at MPI.

share|improve this answer

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

share|improve this answer

Depending on what you are trying to accomplish, you might look at Ayrris from Appistry. You would want to look at the Engine functionality specifically. It provides a framework to distribute your C++ code across any number of commodity based machines. It also provides automatic failover, in the event of a hardware failure, to guarantee execution.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.