cpp_backtrace.py 483 B

123456789101112
  1. # mypy: allow-untyped-defs
  2. from torch._C import _get_cpp_backtrace
  3. def get_cpp_backtrace(frames_to_skip=0, maximum_number_of_frames=64) -> str:
  4. r"""
  5. Return a string containing the C++ stack trace of the current thread.
  6. Args:
  7. frames_to_skip (int): the number of frames to skip from the top of the stack
  8. maximum_number_of_frames (int): the maximum number of frames to return
  9. """
  10. return _get_cpp_backtrace(frames_to_skip, maximum_number_of_frames)