views:

104

answers:

3

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

+3  A: 

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

Dirk Eddelbuettel
+4  A: 

Take a look at MPI.

wilx
+1  A: 

Depending on what you are trying to accomplish, you might look at CloudIQ from Appistry. You would want to look at CloudIQ Engine 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.

Check out the Community links for a free downloads, docs, etc.

Brett McCann