How can I call an executable to run on a separate machine within a program on my own machine (win xp

Posted by Mr. H. on Stack Overflow See other posts from Stack Overflow or by Mr. H.
Published on 2009-01-11T09:56:47Z Indexed on 2010/06/06 22:32 UTC
Read the original article Hit count: 159

My objective is to write a program which will call another executable on a separate computer(all with win xp) with parameters determined at run-time, then repeat for several more computers, and then collect the results. In short, I'm working on a grid-computing project. The algorithm itself being used is already coded in FORTRAN, but we are looking for an efficient way to run it on many computers at once.

I suppose one way to accomplish this would be to upload a script to each computer and then run said script on each computer, all automatically and dependent on my own parameters. But how can I write a program which will write to, upload, and run a script on a separate computer?

I had considered GridGain, but the algorithm is already coded and in a different language, so that is ruled out.

My current guess at accomplishing this task is using Expect (wiki/Expect), but I have no knowledge of the tool.

Any advice appreciated.

© Stack Overflow or respective owner

Related posts about expect

Related posts about multiple-languages