From f9d4681fddf410f293b089869e2a0f8159e60f14 Mon Sep 17 00:00:00 2001 From: Mihir Patel Date: Thu, 3 Oct 2024 21:41:42 -0400 Subject: [PATCH] update --- composer/utils/reproducibility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer/utils/reproducibility.py b/composer/utils/reproducibility.py index ee46473226..975afeea36 100644 --- a/composer/utils/reproducibility.py +++ b/composer/utils/reproducibility.py @@ -127,7 +127,7 @@ def configure_deterministic_mode(): # See https://pytorch.org/docs/stable/generated/torch.use_deterministic_algorithms.html # and https://docs.nvidia.com/cuda/cublas/index.html#cublasApi_reproducibility os.environ['CUBLAS_WORKSPACE_CONFIG'] = ':4096:8' - log.warning('Deterministic mode is activated. This will negatively impact performance.', category=UserWarning) + log.info('Deterministic mode is activated. This will negatively impact performance.', category=UserWarning) def get_random_seed() -> int: