From 60f5c15bc8e28eb7cebd7b4c09f5d2b92bf242f6 Mon Sep 17 00:00:00 2001 From: Blaise Tine Date: Sun, 15 Nov 2020 23:27:02 -0500 Subject: [PATCH] constant integration update --- .travis.yml | 4 ++-- ci/blackbox.sh | 12 +++++++++--- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7ce561fc..354026ab 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: cpp dist: bionic os: linux -compiler: gcc +compiler: clang addons: apt: sources: @@ -20,7 +20,7 @@ install: - export PATH=$VERILATOR_ROOT/bin:$PATH script: - - make > /dev/null 2>&1 + - make -j > /dev/null 2>&1 - ci/test_runtime.sh - ci/test_driver.sh - ci/test_riscv_isa.sh diff --git a/ci/blackbox.sh b/ci/blackbox.sh index 0660ec6b..790dc69f 100755 --- a/ci/blackbox.sh +++ b/ci/blackbox.sh @@ -12,15 +12,21 @@ CONFIGS="-DNUM_CLUSTERS=1 -DNUM_CORES=2 -DL2_ENABLE=0" make -C driver/opae/vlsim make -C driver/tests/dogfood run-vlsim make -C benchmarks/opencl/sgemm run-vlsim -# test L2 with 4 cores +# test 4 cores with L2 make -C driver/opae/vlsim clean 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 benchmarks/opencl/sgemm run-vlsim -# test L3 and 2xL2's with 4 cores each +# test 8 cores with L2 make -C driver/opae/vlsim clean -CONFIGS="-DNUM_CLUSTERS=2 -DNUM_CORES=4 -DL2_ENABLE=1 -DL3_ENABLE=1" make -C driver/opae/vlsim > /dev/null 2>&1 +CONFIGS="-DNUM_CLUSTERS=2 -DNUM_CORES=4 -DL2_ENABLE=1" make -C driver/opae/vlsim > /dev/null 2>&1 +make -C driver/tests/dogfood run-vlsim +make -C benchmarks/opencl/sgemm run-vlsim + +# test 16 cores with L2 and L3 +make -C driver/opae/vlsim clean +CONFIGS="-DNUM_CLUSTERS=4 -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 benchmarks/opencl/sgemm run-vlsim