adding compiler tests to regression suite
This commit is contained in:
@@ -9,6 +9,7 @@ set -e
|
||||
./ci/test_opencl.sh
|
||||
./ci/test_driver.sh
|
||||
./ci/test_simx.sh
|
||||
./ci/test_compiler.sh
|
||||
|
||||
# Build tests disabling extensions
|
||||
CONFIGS=-DEXT_M_DISABLE make -C hw/simulate
|
||||
|
||||
18
ci/test_compiler.sh
Normal file
18
ci/test_compiler.sh
Normal file
@@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
# exit when any command fails
|
||||
set -e
|
||||
|
||||
# rebuild runtime
|
||||
make -C runtime clean
|
||||
make -C runtime
|
||||
|
||||
# rebuild native kernel
|
||||
make -C driver/tests/dogfood clean-all
|
||||
make -C driver/tests/dogfood
|
||||
./ci/blackbox.sh --driver=vlsim --cores=1 --app=dogfood
|
||||
|
||||
# rebuild opencl kernel
|
||||
make -C benchmarks/opencl/sgemm clean-all
|
||||
make -C benchmarks/opencl/sgemm
|
||||
./ci/blackbox.sh --driver=vlsim --cores=1 --app=sgemm
|
||||
Reference in New Issue
Block a user