Repository URL to install this package:
|
Version:
2.1.2+cpu ▾
|
from torch.distributed._tensor.api import DTensor
def get_sharding_prop_cache_info():
"""
Get the cache info for the sharding propagation cache, used for debugging purpose only.
This would return a named tuple showing hits, misses, maxsize and cursize of the sharding
propagator cache.
"""
return (
DTensor._propagator.propagate_op_sharding.cache_info() # type:ignore[attr-defined]
)