mirror of
https://github.com/twitter/the-algorithm-ml.git
synced 2024-12-23 14:51:49 +01:00
Refactored rank-specific logger
#Refactored rank_specific functions. #Implemented the logic without changing the behavior. #The readability and maintainability of the code improved. ------------------------- Tested against: test_torch_logging.py
This commit is contained in:
parent
78c3235eee
commit
ca8db6ddf4
@ -17,31 +17,30 @@ from absl import logging as absl_logging
|
||||
import torch.distributed as dist
|
||||
|
||||
|
||||
import functools
|
||||
from typing import Optional
|
||||
|
||||
import torch.distributed as dist
|
||||
|
||||
from absl import logging as absl_logging
|
||||
from tml.ml_logging.absl_logging import logging as logging
|
||||
|
||||
|
||||
def rank_specific(logger):
|
||||
"""Ensures that we only override a given logger once."""
|
||||
if hasattr(logger, "_ALREADY_OVERWRITTEN_TO_BE_RANK_SPECIFIC"):
|
||||
return logger
|
||||
|
||||
def _if_rank(logger_method, limit: Optional[int] = None):
|
||||
"""Decorator to wrap logger_method and execute only if rank matches."""
|
||||
if limit:
|
||||
# If we are limiting redundant logs, wrap logging call with a cache
|
||||
# to not execute if already cached.
|
||||
def _wrap(_call):
|
||||
@functools.lru_cache(limit)
|
||||
def _logger_method(*args, **kwargs):
|
||||
_call(*args, **kwargs)
|
||||
|
||||
logger_method(*args, **kwargs)
|
||||
return _logger_method
|
||||
|
||||
logger_method = _wrap(logger_method)
|
||||
|
||||
def _inner(msg, *args, rank: int = 0, **kwargs):
|
||||
if not dist.is_initialized():
|
||||
"""Inner function to execute logger_method only if rank matches."""
|
||||
if not dist.is_initialized() or dist.get_rank() == rank or rank < 0:
|
||||
logger_method(msg, *args, **kwargs)
|
||||
elif dist.get_rank() == rank:
|
||||
logger_method(msg, *args, **kwargs)
|
||||
elif rank < 0:
|
||||
logger_method(f"Rank{dist.get_rank()}: {msg}", *args, **kwargs)
|
||||
|
||||
# Register this stack frame with absl logging so that it doesn't trample logging lines.
|
||||
absl_logging.ABSLLogger.register_frame_to_skip(__file__, _inner.__name__)
|
||||
@ -57,5 +56,7 @@ def rank_specific(logger):
|
||||
|
||||
logger._ALREADY_OVERWRITTEN_TO_BE_RANK_SPECIFIC = True
|
||||
|
||||
return logger if hasattr(logger, "_ALREADY_OVERWRITTEN_TO_BE_RANK_SPECIFIC") else None
|
||||
|
||||
|
||||
rank_specific(logging)
|
||||
|
Loading…
Reference in New Issue
Block a user