Support using T-head-Semi/csi-nn2 for RISC-V (#637)
This commit is contained in:
83
.github/workflows/riscv64-linux.yaml
vendored
83
.github/workflows/riscv64-linux.yaml
vendored
@@ -38,7 +38,7 @@ jobs:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest]
|
||||
lib_type: [static, shared]
|
||||
lib_type: [shared] #, static]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
@@ -55,45 +55,35 @@ jobs:
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: qemu-install
|
||||
key: qemu-riscv-install-20240225
|
||||
|
||||
- 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
|
||||
key: qemu-riscv-xuantie-install-20240306
|
||||
|
||||
- name: qemu
|
||||
if: steps.cache-qemu.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
cd qemu
|
||||
./configure --prefix=$GITHUB_WORKSPACE/qemu-install --target-list=riscv64-linux-user --disable-system
|
||||
make -j2
|
||||
make install
|
||||
ls -lh $GITHUB_WORKSPACE/qemu-install
|
||||
ls -lh $GITHUB_WORKSPACE/qemu-install/bin
|
||||
# https://pypi.org/project/xuantie-qemu/#files
|
||||
wget -q https://files.pythonhosted.org/packages/21/f4/733f29c435987e8bb264a6504c7a4ea4c04d0d431b38a818ab63eef082b9/xuantie_qemu-20230825-py3-none-manylinux1_x86_64.whl
|
||||
unzip xuantie_qemu-20230825-py3-none-manylinux1_x86_64.whl
|
||||
mkdir -p qemu-install/bin
|
||||
|
||||
cp -v ./qemu/qemu-riscv64 ./qemu-install/bin
|
||||
|
||||
- name: cache-toolchain
|
||||
id: cache-toolchain
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: toolchain
|
||||
key: riscv64-glibc-ubuntu-20.04-gcc-nightly-2023.10.17-nightly
|
||||
key: Xuantie-900-gcc-linux-5.10.4-glibc-x86_64-V2.6.1-20220906.tar.gz
|
||||
|
||||
- name: Download toolchain
|
||||
if: steps.cache-toolchain.outputs.cache-hit != 'true'
|
||||
shell: bash
|
||||
run: |
|
||||
wget -q https://occ-oss-prod.oss-cn-hangzhou.aliyuncs.com/resource//1663142514282/Xuantie-900-gcc-linux-5.10.4-glibc-x86_64-V2.6.1-20220906.tar.gz
|
||||
|
||||
mkdir $GITHUB_WORKSPACE/toolchain
|
||||
wget -q https://github.com/riscv-collab/riscv-gnu-toolchain/releases/download/2023.10.17/riscv64-glibc-ubuntu-20.04-gcc-nightly-2023.10.17-nightly.tar.gz
|
||||
tar xvf ./riscv64-glibc-ubuntu-20.04-gcc-nightly-2023.10.17-nightly.tar.gz --strip-components 1 -C $GITHUB_WORKSPACE/toolchain
|
||||
|
||||
tar xvf ./Xuantie-900-gcc-linux-5.10.4-glibc-x86_64-V2.6.1-20220906.tar.gz --strip-components 1 -C $GITHUB_WORKSPACE/toolchain
|
||||
ls -lh $GITHUB_WORKSPACE/toolchain/bin
|
||||
|
||||
- name: Display toolchain info
|
||||
shell: bash
|
||||
@@ -139,6 +129,7 @@ jobs:
|
||||
export PATH=$GITHUB_WORKSPACE/toolchain/bin:$PATH
|
||||
export PATH=$GITHUB_WORKSPACE/qemu-install/bin:$PATH
|
||||
export QEMU_LD_PREFIX=$GITHUB_WORKSPACE/toolchain/sysroot
|
||||
export LD_LIBRARY_PATH=$GITHUB_WORKSPACE/toolchain/sysroot/lib
|
||||
|
||||
ls -lh ./build-riscv64-linux-gnu/bin
|
||||
|
||||
@@ -154,6 +145,44 @@ jobs:
|
||||
qemu-riscv64 ./build-riscv64-linux-gnu/bin/sherpa-onnx-offline-tts --help
|
||||
readelf -d ./build-riscv64-linux-gnu/bin/sherpa-onnx-offline-tts
|
||||
|
||||
- name: Test streaming speech recognition
|
||||
shell: bash
|
||||
run: |
|
||||
export PATH=$GITHUB_WORKSPACE/toolchain/bin:$PATH
|
||||
export PATH=$GITHUB_WORKSPACE/qemu-install/bin:$PATH
|
||||
export QEMU_LD_PREFIX=$GITHUB_WORKSPACE/toolchain/sysroot
|
||||
export LD_LIBRARY_PATH=$GITHUB_WORKSPACE/toolchain/sysroot/lib
|
||||
|
||||
wget -q https://github.com/k2-fsa/sherpa-onnx/releases/download/asr-models/sherpa-onnx-streaming-zipformer-zh-14M-2023-02-23.tar.bz2
|
||||
tar xvf sherpa-onnx-streaming-zipformer-zh-14M-2023-02-23.tar.bz2
|
||||
rm sherpa-onnx-streaming-zipformer-zh-14M-2023-02-23.tar.bz2
|
||||
|
||||
qemu-riscv64 ./build-riscv64-linux-gnu/bin/sherpa-onnx \
|
||||
--tokens=./sherpa-onnx-streaming-zipformer-zh-14M-2023-02-23/tokens.txt \
|
||||
--encoder=./sherpa-onnx-streaming-zipformer-zh-14M-2023-02-23/encoder-epoch-99-avg-1.onnx \
|
||||
--decoder=./sherpa-onnx-streaming-zipformer-zh-14M-2023-02-23/decoder-epoch-99-avg-1.onnx \
|
||||
--joiner=./sherpa-onnx-streaming-zipformer-zh-14M-2023-02-23/joiner-epoch-99-avg-1.onnx \
|
||||
./sherpa-onnx-streaming-zipformer-zh-14M-2023-02-23/test_wavs/0.wav
|
||||
|
||||
- name: Test offline tts
|
||||
shell: bash
|
||||
run: |
|
||||
export PATH=$GITHUB_WORKSPACE/toolchain/bin:$PATH
|
||||
export PATH=$GITHUB_WORKSPACE/qemu-install/bin:$PATH
|
||||
export QEMU_LD_PREFIX=$GITHUB_WORKSPACE/toolchain/sysroot
|
||||
export LD_LIBRARY_PATH=$GITHUB_WORKSPACE/toolchain/sysroot/lib
|
||||
|
||||
wget -q https://github.com/k2-fsa/sherpa-onnx/releases/download/tts-models/vits-piper-en_US-lessac-medium.tar.bz2
|
||||
tar xf vits-piper-en_US-lessac-medium.tar.bz2
|
||||
rm vits-piper-en_US-lessac-medium.tar.bz2
|
||||
|
||||
qemu-riscv64 ./build-riscv64-linux-gnu/bin/sherpa-onnx-offline-tts \
|
||||
--vits-model=./vits-piper-en_US-lessac-medium/en_US-lessac-medium.onnx \
|
||||
--vits-data-dir=./vits-piper-en_US-lessac-medium/espeak-ng-data \
|
||||
--vits-tokens=./vits-piper-en_US-lessac-medium/tokens.txt \
|
||||
--output-filename=./liliana-piper-en_US-lessac-medium.wav \
|
||||
'liliana, the most beautiful and lovely assistant of our team!'
|
||||
|
||||
- name: Copy files
|
||||
shell: bash
|
||||
run: |
|
||||
@@ -190,6 +219,12 @@ jobs:
|
||||
name: sherpa-onnx-linux-riscv64-shared
|
||||
path: sherpa-onnx-*linux-riscv64-shared.tar.bz2
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
if: matrix.lib_type == 'shared'
|
||||
with:
|
||||
name: wave
|
||||
path: ./*.wav
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
if: matrix.lib_type == 'static'
|
||||
with:
|
||||
|
||||
Reference in New Issue
Block a user