torch.cuda.set_sync_debug_mode#
- torch.cuda.set_sync_debug_mode(debug_mode)[source]#
Set the debug mode for cuda synchronizing operations.
- Parameters
debug_mode (str orint) – if “default” or 0, don’t error or warn on synchronizing operations,if “warn” or 1, warn on synchronizing operations, if “error” or 2, error out synchronizing operations.
Warning
This is an experimental feature, and not all synchronizing operations will trigger warning or error. Inparticular, operations in torch.distributed and torch.sparse namespaces are not covered yet.