|
| 1 | +import os |
| 2 | + |
| 3 | +import torch |
| 4 | +import torch_xla.core.xla_model as xm |
| 5 | +import torch_xla.distributed.xla_multiprocessing as xmp |
| 6 | + |
| 7 | + |
| 8 | +def check_env_flag(name, default=''): |
| 9 | + return os.getenv(name, default).upper() in ['ON', '1', 'YES', 'TRUE', 'Y'] |
| 10 | + |
| 11 | + |
| 12 | +def extract_execution_cause(lines): |
| 13 | + causes = [] |
| 14 | + for i in range(len(lines)): |
| 15 | + if 'Execution Cause' in lines[i].decode(): |
| 16 | + causes.append(lines[i + 1].decode()) |
| 17 | + return causes |
| 18 | + |
| 19 | + |
| 20 | +def extract_python_frames(lines): |
| 21 | + frames = [] |
| 22 | + current_frame = '' |
| 23 | + record_frame = False |
| 24 | + for i in range(len(lines)): |
| 25 | + if 'Python Frame Triggered Execution' in lines[i].decode(): |
| 26 | + record_frame = True |
| 27 | + elif 'Execution Analysis: ----------------' in lines[i].decode(): |
| 28 | + record_frame = False |
| 29 | + frames.append(current_frame) |
| 30 | + current_frame = '' |
| 31 | + if record_frame: |
| 32 | + current_frame += lines[i].decode() |
| 33 | + return frames |
| 34 | + |
| 35 | + |
| 36 | +def _mp_fn(index): |
| 37 | + if not check_env_flag('PT_XLA_DEBUG'): |
| 38 | + assert False, "This test should be run with PT_XLA_DEBUG" |
| 39 | + debug_file_name = os.getenv('PT_XLA_DEBUG_FILE') |
| 40 | + if not debug_file_name: |
| 41 | + assert False, "This test should be run with PT_XLA_DEBUG_FILE" |
| 42 | + if index == 0: |
| 43 | + open(debug_file_name, 'w').close() |
| 44 | + device = xm.xla_device() |
| 45 | + t1 = torch.randn(10, 10, device=device) |
| 46 | + t2 = t1 * 100 |
| 47 | + xm.mark_step() |
| 48 | + xm.wait_device_ops() |
| 49 | + |
| 50 | + if index == 0: |
| 51 | + # All of the process will write to the same PT_XLA_DEBUG_FILE, but the |
| 52 | + # no need to check this on all processes. |
| 53 | + with open(debug_file_name, 'rb') as f: |
| 54 | + lines = f.readlines() |
| 55 | + causes = extract_execution_cause(lines) |
| 56 | + frames = extract_python_frames(lines) |
| 57 | + # only the local master process should dump the executation analysis |
| 58 | + assert (len(causes) == 1) |
| 59 | + assert ('user mark_step' in causes[0]) |
| 60 | + # make sure that frame that spawn up process is skipped |
| 61 | + assert (len(frames) == 1) |
| 62 | + assert ('....' in frames[0]) |
| 63 | + assert ('_internal/pjrt.py' not in frames[0]) |
| 64 | + |
| 65 | + |
| 66 | +if __name__ == '__main__': |
| 67 | + xmp.spawn(_mp_fn, args=()) |
0 commit comments