File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed
workloads/am/riscv-vector-tests Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change 33
44make -C " $SRC_DIR " RISCV_PREFIX=" $CROSS_COMPILE " compile-stage1
55
6+ # Only these workloads are in the NEMU CI workloads on the self hosted runner.
7+ # Only include them to be consistant with the original CI flow.
8+ include_tests=(
9+ vfadd.vf-0.bin
10+ vfsgnj.vv-0.bin
11+ vfsub.vf-0.bin
12+ vle16.v-0.bin
13+ vle32.v-0.bin
14+ vlse32.v-0.bin
15+ vlseg4e32.v-0.bin
16+ vlsseg4e32.v-0.bin
17+ vluxei32.v-0.bin
18+ vor.vi-0.bin
19+ vse16.v-0.bin
20+ vsetivli-0.bin
21+ vsetvl-0.bin
22+ vsetvli-0.bin
23+ vslide1down.vx-0.bin
24+ vsse16.v-1.bin
25+ vsuxei32.v-0.bin
26+ )
27+
628mkdir -p " $PKG_DIR " /{bin,elf}
729for file in " $SRC_DIR " /out/v256x64machine/bin/stage1-xs/* ; do
830 case " $file " in
931 * .bin)
10- cp " $file " " $PKG_DIR " /bin/
32+ if [[ " ${include_tests[@]} " =~ " $( basename $file ) " ]]; then
33+ cp " $file " " $PKG_DIR " /bin/
34+ fi
1135 ;;
1236 * .txt)
1337 ;;
You can’t perform that action at this time.
0 commit comments