torch / torch.jit
torch.jit.fork¶
-
torch.jit.
fork
(func, *args, **kwargs)[source]¶ Creates an asynchronous task executing func and a reference to the value of the result of this execution. fork will return immediately, so the return value of func may not have been computed yet. To force completion of the task and access the return value invoke torch.jit.wait on the Future. fork invoked with a func which returns T is typed as torch.jit.Future[T]. fork calls can be arbitrarily nested, and may be invoked with positional and keyword arguments. Asynchronous execution will only occur when run in TorchScript. If run in pure python, fork will not execute in parallel. fork will also not execute in parallel when invoked while tracing, however the fork and wait calls will be captured in the exported IR Graph. .. warning:
`fork` tasks will execute non-deterministicly. We recommend only spawning parallel fork tasks for pure functions that do not modify their inputs, module attributes, or global state.
- Parameters
func (callable or torch.nn.Module) – A Python function or torch.nn.Module that will be invoked. If executed in TorchScript, it will execute asynchronously, otherwise it will not. Traced invocations of fork will be captured in the IR.
**kwargs (*args,) – arguments to invoke func with.
- Returns
a reference to the execution of func. The value T can only be accessed by forcing completion of func through torch.jit.wait.
- Return type
torch.jit.Future[T]
Example (fork a free function):
Example (fork a module method):
此页内容是否对您有帮助