SciCoDE Remote: Difference between revisions

From Sccswiki
Jump to navigation Jump to search
(Created page with '=Remote components in sciCoDE= In many cases the user want to execute his code on remote machines (e.g. run a simulation on a supercomputer). sciCoDE provides a way to create rem…')
 
No edit summary
Line 1: Line 1:
=Remote components in sciCoDE=
=Remote components in sciCoDE=
In many cases the user want to execute his code on remote machines (e.g. run a simulation on a supercomputer). sciCoDE provides a way to create remote components capable to run remotely.
In many cases the user want to execute his code on remote machines (e.g. run a simulation on a supercomputer). sciCoDE provides a way to create remote components.
=The C++ remote code=
=The C++ remote code=
If you want to use your C++ application inside sciCoDE as remote component you should generate some stubs needed to establish the connection between the core of sciCoDE and your component. One of the communication methods provided by sciCoDE is a file-based protocol, which can be used on arbitrary systems connected through SSH and SFTP.  
If you want to use your C++ application inside sciCoDE as remote component you should generate some stubs needed to establish the connection between the core of sciCoDE and your component. One of the communication methods provided by sciCoDE is a file-based protocol, which can be used on arbitrary systems connected through SSH and SFTP.  


The following steps are needed to prepare you C++ code:
The following steps are needed to prepare you C++ code:

Revision as of 06:32, 26 July 2011

Remote components in sciCoDE

In many cases the user want to execute his code on remote machines (e.g. run a simulation on a supercomputer). sciCoDE provides a way to create remote components.

The C++ remote code

If you want to use your C++ application inside sciCoDE as remote component you should generate some stubs needed to establish the connection between the core of sciCoDE and your component. One of the communication methods provided by sciCoDE is a file-based protocol, which can be used on arbitrary systems connected through SSH and SFTP.

The following steps are needed to prepare you C++ code: