-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RVV: use new interface for segment load/store & change word_type to s…
…ize_t&add clang ci (part #4100) (#4118) * RVV: use size_t for vl * RVV: replace vsseg.v tuple type by using regex ----- search: vsseg([1-9])e(8|16|32)_v_(f|i|u)\2m(1|2|4|8)x\1\(([ -~]+), vcreate_\3\2m\4x\1\(([ -~]+)\), vl\); substitute by: vsseg$1e$2_v_$3$2m$4($5, $6, vl); * RVV: replace vssseg.v tuple types by using regex --- search: vssseg([1-9])e(8|16|32)_v_f\2m1x\1\(([ -~]+), vcreate_f\2m1x\1\(([ -~]+)\), vl\); substitute by: vssseg$1e$2_v_f$2m1($3, $4, vl); * RVV: replace vlseg.v tuple types in load/store * RVV: replace vloxseg2ei32.v tuple types * RVV: add a wrapper for old compilers * RVV: add segment load/store wrapper in pakcing * RVV: fix cmake test * RVV: make clang happy by dropping VLAs in sgemm * RVV: add clang cmake toolchain configure * RVV: add clang ci, riscv64-unknown-linux-gnu Co-authored-by: thelastlin <thelastlin@users.noreply.github.com> Co-authored-by: nihui <shuizhuyuanluo@126.com>
- Loading branch information
1 parent
4f9e398
commit e7eadca
Showing
85 changed files
with
1,295 additions
and
709 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
name: linux-riscv64-cpu-gnu-clang | ||
on: | ||
push: | ||
branches: [master] | ||
paths: | ||
- '.github/workflows/linux-riscv64-cpu-gnu-clang.yml' | ||
- 'toolchains/riscv64-unknown-linux-gnu.llvm-toolchain.cmake' | ||
- 'CMakeLists.txt' | ||
- 'cmake/**' | ||
- 'src/*' | ||
- 'src/layer/*' | ||
- 'src/layer/riscv/**' | ||
- 'tests/**' | ||
pull_request: | ||
branches: [master] | ||
paths: | ||
- '.github/workflows/linux-riscv64-cpu-gnu-clang.yml' | ||
- 'toolchains/riscv64-unknown-linux-gnu.llvm-toolchain.cmake' | ||
- 'CMakeLists.txt' | ||
- 'cmake/**' | ||
- 'src/*' | ||
- 'src/layer/*' | ||
- 'src/layer/riscv/**' | ||
- 'tests/**' | ||
concurrency: | ||
group: linux-riscv64-cpu-gnu-clang-${{ github.ref }} | ||
cancel-in-progress: true | ||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
linux-gcc-riscv64-rvv: | ||
runs-on: [self-hosted, linux, centos] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
#- name: cache-qemu | ||
#id: cache-qemu | ||
#uses: actions/cache@v3 | ||
#with: | ||
#path: qemu-install | ||
#key: qemu-riscv64-install-20220502-3 | ||
#- name: install-qemu-build-deps | ||
#if: steps.cache-qemu.outputs.cache-hit != 'true' | ||
#run: | | ||
#sudo apt-get update | ||
#sudo apt-get install autoconf automake autotools-dev ninja-build | ||
#- name: checkout-qemu | ||
#if: steps.cache-qemu.outputs.cache-hit != 'true' | ||
#uses: actions/checkout@v3 | ||
#with: | ||
#repository: qemu/qemu | ||
#path: qemu | ||
#ref: f5643914a9e8f79c606a76e6a9d7ea82a3fc3e65 | ||
#- name: qemu | ||
#if: steps.cache-qemu.outputs.cache-hit != 'true' | ||
#run: | | ||
#cd qemu | ||
#wget https://raw.githubusercontent.com/nihui/ncnn-assets/master/qemu-patches/0007-linux-user-Expose-risc-v-V-isa-bit-in-get_elf_hwcap.patch | ||
#patch -p1 -i 0007-linux-user-Expose-risc-v-V-isa-bit-in-get_elf_hwcap.patch | ||
#./configure --prefix=$GITHUB_WORKSPACE/qemu-install --target-list=riscv64-linux-user --disable-system | ||
#make -j2 | ||
#make install | ||
|
||
#- name: cache-riscv | ||
#id: cache-riscv | ||
#uses: actions/cache@v3 | ||
#with: | ||
#path: rv64gcv-install-next | ||
#key: rv64gcv-linux-install-20210504 | ||
|
||
#- name: install-riscv-build-deps | ||
#if: steps.cache-riscv.outputs.cache-hit != 'true' | ||
#run: | | ||
#sudo apt-get update | ||
#sudo apt-get install autoconf automake autotools-dev curl python3 libmpc-dev libmpfr-dev libgmp-dev gawk build-essential bison flex texinfo gperf libtool patchutils bc zlib1g-dev libexpat-dev device-tree-compiler | ||
|
||
#- name: checkout-riscv-gnu-toolchain | ||
#if: steps.cache-riscv.outputs.cache-hit != 'true' | ||
#uses: actions/checkout@v3 | ||
#with: | ||
#repository: riscv/riscv-gnu-toolchain | ||
#path: riscv-gnu-toolchain | ||
#ref: da01ba455ce3802ffa84fdca3a089079996dbfc3 | ||
#- name: checkout-riscv-gnu-toolchain-submodules | ||
#if: steps.cache-riscv.outputs.cache-hit != 'true' | ||
#run: | | ||
#cd riscv-gnu-toolchain | ||
#git submodule update --init --recursive --depth 1 glibc | ||
#git submodule update --init --recursive --depth 1 newlib | ||
#git submodule update --init --recursive --depth 1 riscv-binutils | ||
#git submodule update --init --recursive --depth 1 riscv-gcc | ||
#git submodule update --init --recursive --depth 1 riscv-dejagnu | ||
#git submodule update --init --recursive --depth 1 riscv-gdb | ||
#- name: riscv-gnu-toolchain | ||
#if: steps.cache-riscv.outputs.cache-hit != 'true' | ||
#run: | | ||
#cd riscv-gnu-toolchain | ||
#sed -i '/__OBSOLETE_MATH/d' newlib/newlib/libm/common/math_errf.c | ||
#./configure --prefix=$GITHUB_WORKSPACE/rv64gcv-install-next --with-arch=rv64gcv_zfh | ||
#make linux | ||
|
||
#- name: riscv-strip-install | ||
#if: steps.cache-riscv.outputs.cache-hit != 'true' | ||
#run: find $GITHUB_WORKSPACE/rv64gcv-install-next -type f | xargs -i strip -g {} || true | ||
|
||
# - name: install-clang | ||
# run: | | ||
# wget https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.1/llvm-project-15.0.1.src.tar.xz | ||
# tar -xf llvm-project-15.0.1.src.tar.xz | ||
# cd llvm-project-15.0.1.src | ||
# mkdir build | ||
# cd build | ||
# cmake -DCMAKE_INSTALL_PREFIX=install -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DLLVM_ENABLE_PROJECTS="clang" -DLLVM_TARGETS_TO_BUILD="RISCV" -DLLVM_INCLUDE_EXAMPLES=OFF -DLLVM_INCLUDE_TESTS=OFF ../llvm/ | ||
# make -j16 | ||
# make install | ||
|
||
- name: build | ||
env: | ||
LD_LIBRARY_PATH: /data/action/install/lib64 | ||
run: | | ||
export RISCV_ROOT_PATH=/data/action/osd/rv64gcv-install-next | ||
export PATH=/data/action/osd/llvm-project-15.0.1.src/build/install/bin:$PATH | ||
mkdir build && cd build | ||
cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/riscv64-unknown-linux-gnu.llvm-toolchain.cmake -DNCNN_BUILD_TOOLS=OFF -DNCNN_BUILD_EXAMPLES=OFF -DNCNN_BUILD_TESTS=ON .. | ||
cmake --build . -j 4 | ||
- name: test-vlen256 | ||
env: | ||
LD_LIBRARY_PATH: /data/action/install/lib64 | ||
run: | | ||
export PATH=/data/action/osd/qemu-install/bin:$PATH | ||
cd build | ||
TESTS_EXECUTABLE_LOADER=qemu-riscv64 TESTS_EXECUTABLE_LOADER_ARGUMENTS="-cpu;rv64,v=true,Zfh=true,vlen=256,elen=64,vext_spec=v1.0;-L;/data/action/osd/rv64gcv-install-next/sysroot" ctest --output-on-failure -j 4 | ||
- name: test-vlen128 | ||
env: | ||
LD_LIBRARY_PATH: /data/action/install/lib64 | ||
run: | | ||
export PATH=/data/action/osd/qemu-install/bin:$PATH | ||
cd build | ||
TESTS_EXECUTABLE_LOADER=qemu-riscv64 TESTS_EXECUTABLE_LOADER_ARGUMENTS="-cpu;rv64,v=true,Zfh=true,vlen=128,elen=64,vext_spec=v1.0;-L;/data/action/osd/rv64gcv-install-next/sysroot" ctest --output-on-failure -j 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.