diff --git a/scripts/amd/backtrace.sh b/scripts/amd/backtrace.sh index de2d50ba1..df8595daf 100644 --- a/scripts/amd/backtrace.sh +++ b/scripts/amd/backtrace.sh @@ -7,7 +7,7 @@ sudo apt install gdb -y gdb -ex "set pagination off" \ -ex "file python" \ - -ex 'run -m pytest --capture=tee-sys --verbose "python/test/unit/language/test_core.py::test_atomic_rmw[add-uint32-all_neg]"' \ + -ex 'run -m pytest --capture=tee-sys --verbose "python/test/unit/language/test_core.py::test_bin_op[int32-uint32-+]"' \ -ex "backtrace" \ -ex "set confirm off" \ -ex "q" \ diff --git a/scripts/amd/run.sh b/scripts/amd/run.sh index 4cfff35d3..015749c54 100644 --- a/scripts/amd/run.sh +++ b/scripts/amd/run.sh @@ -11,9 +11,8 @@ bash scripts/amd/clean.sh # bash scripts/amd/deps.sh bash scripts/amd/build.sh bash scripts/amd/test.sh 2>&1 |tee $LOG_DIR/test.log -# bash scripts/amd/cache_print.sh 2>&1 |tee $LOG_DIR/cache.log # bash scripts/amd/debug.sh # bash scripts/amd/backtrace.sh 2>&1 |tee $LOG_DIR/backtrace.log - +# bash scripts/amd/cache_print.sh 2>&1 |tee $LOG_DIR/cache.log # bash scripts/amd/post.sh # dont double call \ No newline at end of file diff --git a/scripts/amd/test.sh b/scripts/amd/test.sh index 88a1b8999..d6c1d9ad5 100755 --- a/scripts/amd/test.sh +++ b/scripts/amd/test.sh @@ -31,6 +31,7 @@ pytest --verbose python/test/unit/language/test_core.py 2>&1 | tee /dockerx/trit # pytest --verbose python/test/unit/language/test_core.py::test_bin_op[int32-uint32-+] 2>&1 | tee /dockerx/triton/test_bin_op.log # pytest --verbose python/test/unit/language/test_core.py::test_atomic_rmw 2>&1 | tee /dockerx/triton/test_atomic_rmw.log # pytest --verbose python/test/unit/language/test_core.py::test_atomic_rmw[add-float16-all_neg] 2>&1 | tee /dockerx/triton/test_atomic_rmw.log +# pytest --verbose "python/test/unit/language/test_core.py::test_reduce1d" 2>&1 | tee /dockerx/triton/test_reduce1d.log # mismatch # pytest --verbose "python/test/unit/language/test_core.py::test_bin_op[int8-float16-%]"" 2>&1 | tee /dockerx/triton/test_bin_op.log