RemoteJIT.remote_call#

RemoteJIT.remote_call(func, ftype, arguments, hold=False)#

Call function remotely on given arguments.

The input function func is called remotely by sending the arguments data to remote host where the previously compiled function (see remote_compile method) is applied to the arguments, and the result is returned to local process.

If hold is True then return an object that specifies remote call but does not execute it. The type of return object is custom to particular RemoteJIT specialization.

Parameters:
  • ftype (Type) –

  • arguments (tuple) –