Files
triton/scripts/amd/debug.sh

16 lines
443 B
Bash
Raw Normal View History

2022-10-17 17:28:48 +00:00
sudo apt install gdb -y
# export AMD_OCL_WAIT_COMMAND=1
# export AMD_LOG_LEVEL=3
# export HIP_LAUNCH_BLOCKING=1
2022-10-21 20:17:30 +00:00
gdb -ex "file python" \
-ex 'run -m pytest --capture=tee-sys --verbose "python/test/unit/language/test_core.py::test_empty_kernel[float32]"' \
-ex "set pagination off" \
2022-10-17 17:28:48 +00:00
-ex "set confirm off" \
2022-10-21 20:17:30 +00:00
-ex "break _exit" \
-ex "commands"
-ex "run"
-ex 'end' \
2022-10-17 17:28:48 +00:00
2>&1 | tee /dockerx/pytorch/test_core_gdb.log