Files
DB-GPT/dbgpt/util/memory_utils.py
2023-12-08 14:45:59 +08:00

12 lines
237 B
Python

from typing import Any
from pympler import asizeof
def _get_object_bytes(obj: Any) -> int:
"""Get the bytes of a object in memory
Args:
obj (Any): The object to return the bytes
"""
return asizeof.asizeof(obj)