CI: Add 32-bit and 64-bit runners on Alpine Linux #3
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
name: loongarch64 clang qemu test | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
TEST: | |
if: "github.repository == 'OpenMathLib/OpenBLAS'" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- target: LOONGSONGENERIC | |
opts: NO_SHARED=1 DYNAMIC_ARCH=1 TARGET=LOONGSONGENERIC | |
- target: LOONGSON3R5 | |
opts: NO_SHARED=1 DYNAMIC_ARCH=1 TARGET=LOONGSON3R5 | |
- target: LOONGSON2K1000 | |
opts: NO_SHARED=1 DYNAMIC_ARCH=1 TARGET=LOONGSON2K1000 | |
- target: DYNAMIC_ARCH | |
opts: NO_SHARED=1 DYNAMIC_ARCH=1 TARGET=GENERIC | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install libffi6 | |
run: | | |
wget http://ftp.ca.debian.org/debian/pool/main/libf/libffi/libffi6_3.2.1-9_amd64.deb | |
sudo dpkg -i libffi6_3.2.1-9_amd64.deb | |
- name: Install APT deps | |
run: | | |
sudo apt-get update | |
sudo apt-get install autoconf automake autotools-dev ninja-build make ccache | |
- name: Download and install loongarch64-toolchain | |
run: | | |
wget https://github.com/XiWeiGu/loongarch64_toolchain/releases/download/V0.1/clang+llvm_8.0.1-6_amd64-linux-gnu_debian-10.tar.gz | |
wget https://github.com/XiWeiGu/loongarch64_toolchain/releases/download/V0.1/loongson-gnu-toolchain-8.3-x86_64-loongarch64-linux-gnu-rc1.3.tar.xz | |
tar -xf clang+llvm_8.0.1-6_amd64-linux-gnu_debian-10.tar.gz -C /opt | |
tar -xf loongson-gnu-toolchain-8.3-x86_64-loongarch64-linux-gnu-rc1.3.tar.xz -C /opt | |
- name: Checkout qemu | |
uses: actions/checkout@v3 | |
with: | |
repository: qemu/qemu | |
path: qemu | |
ref: master | |
- name: Install qemu | |
run: | | |
cd qemu | |
./configure --prefix=$GITHUB_WORKSPACE/qemu-install --target-list=loongarch64-linux-user --disable-system --static | |
make -j$(nproc) | |
make install | |
- name: Set env | |
run: | | |
echo "PATH=$GITHUB_WORKSPACE:/opt/clang+llvm_8.0.1-6_amd64-linux-gnu_debian-10/bin:/opt/loongson-gnu-toolchain-8.3-x86_64-loongarch64-linux-gnu-rc1.3/bin:$PATH" >> $GITHUB_ENV | |
- name: Compilation cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.ccache | |
key: ccache-${{ runner.os }}-${{ matrix.target }}-${{ github.ref }}-${{ github.sha }} | |
restore-keys: | | |
ccache-${{ runner.os }}-${{ matrix.target }}-${{ github.ref }} | |
ccache-${{ runner.os }}-${{ matrix.target }} | |
- name: Configure ccache | |
run: | | |
test -d ~/.ccache || mkdir -p ~/.ccache | |
echo "max_size = 300M" > ~/.ccache/ccache.conf | |
echo "compression = true" >> ~/.ccache/ccache.conf | |
ccache -s | |
- name: Disable utest dsdot:dsdot_n_1 | |
run: | | |
echo -n > utest/test_dsdot.c | |
echo "Due to the qemu versions 7.2 causing utest cases to fail," | |
echo "the utest dsdot:dsdot_n_1 have been temporarily disabled." | |
- name: Build OpenBLAS | |
run: make CC='ccache clang --target=loongarch64-linux-gnu --sysroot=/opt/loongson-gnu-toolchain-8.3-x86_64-loongarch64-linux-gnu-rc1.3/loongarch64-linux-gnu/sysroot/ -static' FC='ccache loongarch64-linux-gnu-gfortran -static' HOSTCC='ccache clang' CROSS_SUFFIX=llvm- NO_SHARED=1 ${{ matrix.opts }} -j$(nproc) | |
- name: Test | |
run: | | |
export PATH=$GITHUB_WORKSPACE/qemu-install/bin/:$PATH | |
qemu-loongarch64 ./utest/openblas_utest | |
qemu-loongarch64 ./utest/openblas_utest_ext | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./ctest/xscblat1 | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./ctest/xdcblat1 | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./ctest/xccblat1 | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./ctest/xzcblat1 | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./ctest/xscblat2 < ./ctest/sin2 | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./ctest/xdcblat2 < ./ctest/din2 | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./ctest/xccblat2 < ./ctest/cin2 | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./ctest/xzcblat2 < ./ctest/zin2 | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./ctest/xscblat3 < ./ctest/sin3 | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./ctest/xdcblat3 < ./ctest/din3 | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./ctest/xccblat3 < ./ctest/cin3 | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./ctest/xzcblat3 < ./ctest/zin3 | |
OPENBLAS_NUM_THREADS=1 OMP_NUM_THREADS=1 qemu-loongarch64 ./test/sblat1 | |
OPENBLAS_NUM_THREADS=1 OMP_NUM_THREADS=1 qemu-loongarch64 ./test/dblat1 | |
OPENBLAS_NUM_THREADS=1 OMP_NUM_THREADS=1 qemu-loongarch64 ./test/cblat1 | |
OPENBLAS_NUM_THREADS=1 OMP_NUM_THREADS=1 qemu-loongarch64 ./test/zblat1 | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./test/sblat1 | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./test/dblat1 | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./test/cblat1 | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./test/zblat1 | |
rm -f ./test/?BLAT2.SUMM | |
OPENBLAS_NUM_THREADS=1 OMP_NUM_THREADS=1 qemu-loongarch64 ./test/sblat2 < ./test/sblat2.dat | |
OPENBLAS_NUM_THREADS=1 OMP_NUM_THREADS=1 qemu-loongarch64 ./test/dblat2 < ./test/dblat2.dat | |
OPENBLAS_NUM_THREADS=1 OMP_NUM_THREADS=1 qemu-loongarch64 ./test/cblat2 < ./test/cblat2.dat | |
OPENBLAS_NUM_THREADS=1 OMP_NUM_THREADS=1 qemu-loongarch64 ./test/zblat2 < ./test/zblat2.dat | |
rm -f ./test/?BLAT2.SUMM | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./test/sblat2 < ./test/sblat2.dat | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./test/dblat2 < ./test/dblat2.dat | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./test/cblat2 < ./test/cblat2.dat | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./test/zblat2 < ./test/zblat2.dat | |
rm -f ./test/?BLAT3.SUMM | |
OPENBLAS_NUM_THREADS=1 OMP_NUM_THREADS=1 qemu-loongarch64 ./test/sblat3 < ./test/sblat3.dat | |
OPENBLAS_NUM_THREADS=1 OMP_NUM_THREADS=1 qemu-loongarch64 ./test/dblat3 < ./test/dblat3.dat | |
OPENBLAS_NUM_THREADS=1 OMP_NUM_THREADS=1 qemu-loongarch64 ./test/cblat3 < ./test/cblat3.dat | |
OPENBLAS_NUM_THREADS=1 OMP_NUM_THREADS=1 qemu-loongarch64 ./test/zblat3 < ./test/zblat3.dat | |
rm -f ./test/?BLAT3.SUMM | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./test/sblat3 < ./test/sblat3.dat | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./test/dblat3 < ./test/dblat3.dat | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./test/cblat3 < ./test/cblat3.dat | |
OPENBLAS_NUM_THREADS=2 qemu-loongarch64 ./test/zblat3 < ./test/zblat3.dat | |