enable deterministic mode for npu (#31253)

This commit is contained in:
Huazhong Ji 2024-06-05 19:35:35 +08:00 committed by GitHub
parent 4a6024921f
commit 41cf4097f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -71,6 +71,9 @@ def enable_full_determinism(seed: int, warn_only: bool = False):
# depending on the CUDA version, so we set them both here
os.environ["CUDA_LAUNCH_BLOCKING"] = "1"
os.environ["CUBLAS_WORKSPACE_CONFIG"] = ":16:8"
# The environment variable required to enable deterministic mode on Ascend NPUs.
os.environ["ASCEND_LAUNCH_BLOCKING"] = 1
os.environ["HCCL_DETERMINISTIC"] = 1
torch.use_deterministic_algorithms(True, warn_only=warn_only)
# Enable CUDNN deterministic mode