vulkan: disable mmvq on Intel Windows driver (#20672) #1
This file contains hidden or 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: CI (riscv) | |
| on: | |
| workflow_dispatch: # allows manual triggering | |
| push: | |
| branches: | |
| - master | |
| paths: [ | |
| '.github/workflows/build-riscv.yml', | |
| '**/CMakeLists.txt', | |
| '**/.cmake', | |
| '**/*.h', | |
| '**/*.hpp', | |
| '**/*.c', | |
| '**/*.cpp' | |
| ] | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths: [ | |
| '.github/workflows/build-riscv.yml', | |
| 'ggml/src/ggml-cpu/arch/riscv/**' | |
| ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }} | |
| cancel-in-progress: true | |
| env: | |
| GGML_NLOOP: 3 | |
| GGML_N_THREADS: 1 | |
| LLAMA_LOG_COLORS: 1 | |
| LLAMA_LOG_PREFIX: 1 | |
| LLAMA_LOG_TIMESTAMPS: 1 | |
| jobs: | |
| ubuntu-riscv64-native-sanitizer: | |
| runs-on: RISCV64 | |
| continue-on-error: true | |
| strategy: | |
| matrix: | |
| sanitizer: [ADDRESS, THREAD, UNDEFINED] | |
| build_type: [Debug] | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| # Install necessary packages | |
| sudo apt-get install -y libatomic1 libtsan2 gcc-14 g++-14 rustup cmake build-essential wget ccache git-lfs | |
| # Set gcc-14 and g++-14 as the default compilers | |
| sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 100 | |
| sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-14 100 | |
| sudo ln -sf /usr/bin/gcc-14 /usr/bin/gcc | |
| sudo ln -sf /usr/bin/g++-14 /usr/bin/g++ | |
| # Install Rust stable version | |
| rustup install stable | |
| rustup default stable | |
| git lfs install | |
| - name: GCC version check | |
| run: | | |
| gcc --version | |
| g++ --version | |
| - name: Clone | |
| id: checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup ccache | |
| run: | | |
| # Unique cache directory per matrix combination | |
| export CCACHE_DIR="$HOME/.ccache/sanitizer-${{ matrix.sanitizer }}-${{ matrix.build_type }}" | |
| mkdir -p "$CCACHE_DIR" | |
| # Configure ccache | |
| ccache --set-config=max_size=5G | |
| ccache --set-config=compression=true | |
| ccache --set-config=compression_level=6 | |
| ccache --set-config=cache_dir="$CCACHE_DIR" | |
| ccache --set-config=sloppiness=file_macro,time_macros,include_file_mtime,include_file_ctime | |
| ccache --set-config=hash_dir=false | |
| # Export for subsequent steps | |
| echo "CCACHE_DIR=$CCACHE_DIR" >> $GITHUB_ENV | |
| echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV | |
| - name: Build | |
| id: cmake_build | |
| if: ${{ matrix.sanitizer != 'THREAD' }} | |
| run: | | |
| cmake -B build \ | |
| -DLLAMA_OPENSSL=OFF \ | |
| -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \ | |
| -DGGML_OPENMP=ON \ | |
| -DLLAMA_BUILD_EXAMPLES=ON \ | |
| -DLLAMA_BUILD_TOOLS=ON \ | |
| -DLLAMA_BUILD_TESTS=OFF \ | |
| -DCMAKE_C_COMPILER_LAUNCHER=ccache \ | |
| -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ | |
| -DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON \ | |
| -DCMAKE_C_COMPILER=riscv64-linux-gnu-gcc-14 \ | |
| -DCMAKE_CXX_COMPILER=riscv64-linux-gnu-g++-14 | |
| cmake --build build --config ${{ matrix.build_type }} -j $(nproc) | |
| - name: Build (no OpenMP) | |
| id: cmake_build_no_openmp | |
| if: ${{ matrix.sanitizer == 'THREAD' }} | |
| run: | | |
| cmake -B build \ | |
| -DLLAMA_OPENSSL=OFF \ | |
| -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \ | |
| -DGGML_OPENMP=OFF \ | |
| -DLLAMA_BUILD_EXAMPLES=ON \ | |
| -DLLAMA_BUILD_TOOLS=ON \ | |
| -DLLAMA_BUILD_TESTS=OFF \ | |
| -DCMAKE_C_COMPILER_LAUNCHER=ccache \ | |
| -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ | |
| -DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON \ | |
| -DCMAKE_C_COMPILER=riscv64-linux-gnu-gcc-14 \ | |
| -DCMAKE_CXX_COMPILER=riscv64-linux-gnu-g++-14 | |
| cmake --build build --config ${{ matrix.build_type }} -j $(nproc) | |
| - name: Test | |
| id: cmake_test | |
| run: | | |
| cd build | |
| ctest -L main --verbose --timeout 900 |