You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

1. Use cases:

1.1. Wrapper modes:

  • interactive - user code is run directly from wrapper
  • batch - user executable is sent to a queue

1.2. Type of execution

User code can be:

  • Sequential
  • Parallel:
    • MPI, and/or
    • OpenMP

1.3. Debugging modes:

  • standalone - debugger launches executable containing user code in a separate process
  • attach - debugger attaches to running process executing user code

2. Arguments passed to wrapper

def actor_name(
integer0,
integer1,

exec_type='ctypes',
**kwargs):

2.1. User code arguments (IN/OUT)

Argument can be

  • IDS
  • primitive type
  • array of primitive types
  • string

2.2. Execution mode




  • No labels