diff --git a/ci/test_compiler.sh b/ci/test_compiler.sh index 21777891..0b1b7594 100755 --- a/ci/test_compiler.sh +++ b/ci/test_compiler.sh @@ -3,24 +3,24 @@ # exit when any command fails set -e +# clear POCL cache +rm -rf ~/.cache/pocl + # rebuild runtime make -C runtime clean make -C runtime -# clear POCL cache -rm -rf ~/.cache/pocl - # rebuild runtime test make -C tests/runtime/simple clean make -C tests/runtime/simple -make -C tests/runtime/simple run-rtlsim +make -C tests/runtime/simple run-simx # rebuild native kernel make -C tests/regression/dogfood clean-all make -C tests/regression/dogfood -make -C tests/regression/dogfood run-rtlsim +make -C tests/regression/dogfood run-simx # rebuild opencl kernel make -C tests/opencl/sgemm clean-all make -C tests/opencl/sgemm -make -C tests/opencl/sgemm run-rtlsim \ No newline at end of file +make -C tests/opencl/sgemm run-simx \ No newline at end of file