File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5252 pytest test_platforms.py -v -m "${{ inputs.pytest-markers }}"
5353 deactivate
5454 shell : bash
55+ - name : NE16 Profiling (cycle counts)
56+ if : always()
57+ run : |
58+ source /app/install/gap9-sdk/.gap9-venv/bin/activate
59+ source /app/install/gap9-sdk/configs/gap9_evk_audio.sh || true
60+ export GVSOC_INSTALL_DIR=/app/install/gap9-sdk/install/workstation
61+ export GAP_RISCV_GCC_TOOLCHAIN=/app/install/gcc/gap9
62+ mkdir -p /app/.ccache
63+ export CCACHE_DIR=/app/.ccache
64+ cd DeeployTest
65+ for test in \
66+ "Tests/Kernels/Integer/Conv/PW_2D_RQ/Regular_RQ --l1 32000" \
67+ "Tests/Kernels/Integer/Conv/PW_2D --l1 32000" \
68+ "Tests/Kernels/Integer/Conv/DW_2D_RQ --l1 32000" \
69+ "Tests/Kernels/Integer/Conv/Dense_2D_RQ --l1 32000" \
70+ "Tests/Kernels/Integer/Conv/StriddedPadded_2D_RQ --l1 32000"; do
71+ dir=$(echo $test | awk '{print $1}')
72+ l1=$(echo $test | awk '{print $3}')
73+ echo "========================================"
74+ echo "PROFILING: $dir (L1=$l1)"
75+ echo "========================================"
76+ python3 deeployRunner_tiled_gap9_w_ne16.py \
77+ -t "$dir" --l1 "$l1" \
78+ --toolchain GCC --toolchain-install-dir /app/install/gcc/gap9 \
79+ --cores 8 --enable-3x3 --profileTiling -v 2>&1 || true
80+ done
81+ deactivate
82+ shell : bash
You can’t perform that action at this time.
0 commit comments