From 28bec3dc4166b19690c831b2e01d84d2ed4110d3 Mon Sep 17 00:00:00 2001 From: Michael Melesse Date: Sat, 24 Dec 2022 07:53:28 -0600 Subject: [PATCH] update test --- scripts/amd/run.sh | 3 ++- scripts/amd/test.sh | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/amd/run.sh b/scripts/amd/run.sh index 97dea9f23..811b7d100 100755 --- a/scripts/amd/run.sh +++ b/scripts/amd/run.sh @@ -13,4 +13,5 @@ chmod -R 777 $LOG_DIR bash scripts/amd/clean.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 \ No newline at end of file +# bash scripts/amd/test.sh backtrace 2>&1 |tee $LOG_DIR/backtrace.log +# bash scripts/amd/cache_print.sh 2>&1 |tee $LOG_DIR/cache.log \ No newline at end of file diff --git a/scripts/amd/test.sh b/scripts/amd/test.sh index 5daa99ea0..fd12173de 100755 --- a/scripts/amd/test.sh +++ b/scripts/amd/test.sh @@ -31,7 +31,9 @@ else # pytest -rfs --verbose python/tests 2>&1 | tee $LOG_DIR/test_all.log # pytest -rfs --verbose "python/tests/test_compiler.py" 2>&1 | tee $LOG_DIR/test_compiler.log # pytest -rfs --verbose "python/tests/test_core_amd.py" 2>&1 | tee $LOG_DIR/test_core_amd.log - pytest -rfs --verbose "python/tests/test_core_amd.py::test_bin_op[int8-int8-/]" + pytest -rfs --verbose "python/tests/test_core_amd.py::test_bitwise_op" + # pytest -rfs --verbose "python/tests/test_core_amd.py::test_bitwise_op[int8-int8-&1]" + # pytest -rfs --verbose "python/tests/test_core_amd.py::test_bin_op[int8-int8-/]" # pytest -rfs --verbose "python/tests/test_core_amd.py::test_empty_kernel" 2>&1 | tee $LOG_DIR/test_empty_kernel.log # pytest -rfs --verbose "python/tests/test_core_amd.py::test_empty_kernel[float32]" 2>&1 | tee $LOG_DIR/test_empty_kernel_float32.log # pytest -rfs --verbose "python/tests/test_core_amd.py::test_bin_op[float32-float32-+]" 2>&1 | tee $LOG_DIR/test_bin_op_float32.log