constant integration updates
This commit is contained in:
@@ -20,7 +20,7 @@ install:
|
|||||||
- export PATH=$VERILATOR_ROOT/bin:$PATH
|
- export PATH=$VERILATOR_ROOT/bin:$PATH
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- make -j`nproc`
|
- make > /dev/null 2>&1
|
||||||
- ci/test_runtime.sh
|
- ci/test_runtime.sh
|
||||||
- ci/test_driver.sh
|
- ci/test_driver.sh
|
||||||
- ci/test_riscv_isa.sh
|
- ci/test_riscv_isa.sh
|
||||||
|
|||||||
@@ -2,34 +2,34 @@
|
|||||||
|
|
||||||
# test single core
|
# test single core
|
||||||
make -C driver/opae/vlsim clean
|
make -C driver/opae/vlsim clean
|
||||||
CONFIGS="-DNUM_CLUSTERS=1 -DNUM_CORES=1" make -C driver/opae/vlsim
|
CONFIGS="-DNUM_CLUSTERS=1 -DNUM_CORES=1" make -C driver/opae/vlsim > /dev/null 2>&1
|
||||||
make -C driver/tests/dogfood run-vlsim
|
make -C driver/tests/dogfood run-vlsim
|
||||||
make -C benchmarks/opencl/sgemm run-vlsim
|
make -C benchmarks/opencl/sgemm run-vlsim
|
||||||
|
|
||||||
# test 2 cores
|
# test 2 cores
|
||||||
make -C driver/opae/vlsim clean
|
make -C driver/opae/vlsim clean
|
||||||
CONFIGS="-DNUM_CLUSTERS=1 -DNUM_CORES=2 -DL2_ENABLE=0" make -C driver/opae/vlsim
|
CONFIGS="-DNUM_CLUSTERS=1 -DNUM_CORES=2 -DL2_ENABLE=0" make -C driver/opae/vlsim > /dev/null 2>&1
|
||||||
make -C driver/tests/dogfood run-vlsim
|
make -C driver/tests/dogfood run-vlsim
|
||||||
make -C benchmarks/opencl/sgemm run-vlsim
|
make -C benchmarks/opencl/sgemm run-vlsim
|
||||||
|
|
||||||
# test L2 with 4 cores
|
# test L2 with 4 cores
|
||||||
make -C driver/opae/vlsim clean
|
make -C driver/opae/vlsim clean
|
||||||
CONFIGS="-DNUM_CLUSTERS=1 -DNUM_CORES=4 -DL2_ENABLE=1" make -C driver/opae/vlsim
|
CONFIGS="-DNUM_CLUSTERS=1 -DNUM_CORES=4 -DL2_ENABLE=1" make -C driver/opae/vlsim > /dev/null 2>&1
|
||||||
make -C driver/tests/dogfood run-vlsim
|
make -C driver/tests/dogfood run-vlsim
|
||||||
make -C benchmarks/opencl/sgemm run-vlsim
|
make -C benchmarks/opencl/sgemm run-vlsim
|
||||||
|
|
||||||
# test L3 and 2xL2's with 4 cores each
|
# test L3 and 2xL2's with 4 cores each
|
||||||
make -C driver/opae/vlsim clean
|
make -C driver/opae/vlsim clean
|
||||||
CONFIGS="-DNUM_CLUSTERS=2 -DNUM_CORES=4 -DL2_ENABLE=1 -DL3_ENABLE=1" make -C driver/opae/vlsim
|
CONFIGS="-DNUM_CLUSTERS=2 -DNUM_CORES=4 -DL2_ENABLE=1 -DL3_ENABLE=1" make -C driver/opae/vlsim > /dev/null 2>&1
|
||||||
make -C driver/tests/dogfood run-vlsim
|
make -C driver/tests/dogfood run-vlsim
|
||||||
make -C benchmarks/opencl/sgemm run-vlsim
|
make -C benchmarks/opencl/sgemm run-vlsim
|
||||||
|
|
||||||
# test debug build
|
# test debug build
|
||||||
make -C driver/opae/vlsim clean
|
make -C driver/opae/vlsim clean
|
||||||
DEBUG=1 CONFIGS="-DNUM_CLUSTERS=1 -DNUM_CORES=1" make -C driver/opae/vlsim
|
DEBUG=1 CONFIGS="-DNUM_CLUSTERS=1 -DNUM_CORES=1" make -C driver/opae/vlsim > /dev/null 2>&1
|
||||||
make -C driver/tests/demo run-vlsim
|
make -C driver/tests/demo run-vlsim
|
||||||
|
|
||||||
# test build with scope analyzer
|
# test build with scope analyzer
|
||||||
make -C driver/opae clean
|
make -C driver/opae clean
|
||||||
SCOPE=1 CONFIGS="-DNUM_CLUSTERS=1 -DNUM_CORES=1" make -C driver/opae
|
SCOPE=1 CONFIGS="-DNUM_CLUSTERS=1 -DNUM_CORES=1" make -C driver/opae > /dev/null 2>&1
|
||||||
make -C driver/tests/demo run-vlsim
|
make -C driver/tests/demo run-vlsim
|
||||||
Reference in New Issue
Block a user