set_multithreading_enabled
-
class torch.autograd.grad_mode.set_multithreading_enabled(mode)[source] -
Context-manager that sets multithreaded backwards on or off.
set_multithreading_enabledwill enable or disable multithreaded backwards based on its argumentmode. It can be used as a context-manager or as a function.This context manager is thread local; it will not affect computation in other threads.
- Parameters
-
mode (bool) – Flag whether to enable multithreaded backwards (
True), or disable (False).
Note
This API does not apply to forward-mode AD.
-
clone()[source] -
Create a copy of this class
- Return type