Skip to content

Attempt to work around MSVC ICE #531

Attempt to work around MSVC ICE

Attempt to work around MSVC ICE #531

Workflow file for this run

name: Langulus::SIMD CI
on: push
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, windows-latest]
build: [Release]
arch: [x86, x64]
cxx: [g++-14, clang++-19, ClangCl, v143]
feature: [
[NoSIMD, 16, ' ', '/arch:IA32'],
[SSE2, 16, '-msse2', '/arch:SSE2'],
[SSE3, 16, '-msse3', '<not available on msvc>'],
[SSSE3, 16, '-mssse3', '<not available on msvc>'],
[SSE4.1, 16, '-msse4.1', '<not available on msvc>'],
[SSE4.2, 16, '-msse4.2', '<not available on msvc>'],
[AVX, 32, '-mavx', '/arch:AVX'],
[AVX2, 32, '-mavx2', '/arch:AVX2'],
[AVX512, 64, '-mavx512f', '/arch:AVX512']
]
exclude:
- os: ubuntu-24.04
cxx: v143
- os: ubuntu-24.04
cxx: ClangCl
- os: windows-latest
cxx: g++-14
- os: windows-latest
cxx: clang++-19
- arch: x64
cxx: ClangCl
feature: [SSE2, 16, '-msse2', '/arch:SSE2']
- arch: x64
cxx: ClangCl
feature: [SSE3, 16, '-msse3', '<not available on msvc>']
- arch: x64
cxx: ClangCl
feature: [SSSE3, 16, '-mssse3', '<not available on msvc>']
- arch: x64
cxx: ClangCl
feature: [SSE4.1, 16, '-msse4.1', '<not available on msvc>']
- arch: x64
cxx: ClangCl
feature: [SSE4.2, 16, '-msse4.2', '<not available on msvc>']
- arch: x86
cxx: ClangCl
feature: [SSE3, 16, '-msse3', '<not available on msvc>']
- arch: x86
cxx: ClangCl
feature: [SSSE3, 16, '-mssse3', '<not available on msvc>']
- arch: x86
cxx: ClangCl
feature: [SSE4.1, 16, '-msse4.1', '<not available on msvc>']
- arch: x86
cxx: ClangCl
feature: [SSE4.2, 16, '-msse4.2', '<not available on msvc>']
- arch: x64
cxx: v143
feature: [SSE2, 16, '-msse2', '/arch:SSE2']
- arch: x64
cxx: v143
feature: [SSE3, 16, '-msse3', '<not available on msvc>']
- arch: x64
cxx: v143
feature: [SSSE3, 16, '-mssse3', '<not available on msvc>']
- arch: x64
cxx: v143
feature: [SSE4.1, 16, '-msse4.1', '<not available on msvc>']
- arch: x64
cxx: v143
feature: [SSE4.2, 16, '-msse4.2', '<not available on msvc>']
- arch: x86
cxx: v143
feature: [SSE3, 16, '-msse3', '<not available on msvc>']
- arch: x86
cxx: v143
feature: [SSSE3, 16, '-mssse3', '<not available on msvc>']
- arch: x86
cxx: v143
feature: [SSE4.1, 16, '-msse4.1', '<not available on msvc>']
- arch: x86
cxx: v143
feature: [SSE4.2, 16, '-msse4.2', '<not available on msvc>']
# Seems the cloud at github doesn't have the avx512 extensions
- feature: [AVX512, 64, '-mavx512f', '/arch:AVX512']
include:
- cxx: g++-14
c: gcc-14
- cxx: clang++-19
c: clang-19
- os: ubuntu-24.04
arch: x86
cmake_args: "-DCMAKE_CXX_FLAGS=-m32"
- os: ubuntu-24.04
arch: x64
cmake_args: "-DCMAKE_CXX_FLAGS=-m64"
- os: windows-latest
arch: x86
cmake_args: "-G \"Visual Studio 17 2022\" -A Win32"
- os: windows-latest
arch: x64
cmake_args: "-G \"Visual Studio 17 2022\" -A x64"
name: "${{matrix.os}}-${{matrix.cxx}}-${{matrix.build}}-${{matrix.arch}}-${{matrix.feature[0]}}"
runs-on: ${{matrix.os}}
steps:
- name: Clone
uses: actions/checkout@v4
- if: matrix.os == 'ubuntu-24.04' && matrix.arch == 'x86'
name: Prepare Linux for cross-compilation
run: |
sudo apt update
sudo apt install g++-14-multilib
- if: matrix.cxx == 'g++-14'
name: Installing G++ 14
run: |
sudo apt update
sudo apt install gcc-14 g++-14
- if: matrix.cxx == 'clang++-19'
name: Installing Clang 19
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo apt-add-repository "deb http://apt.llvm.org/noble/ llvm-toolchain-noble-19 main"
sudo apt update
sudo apt install gcc-14 g++-14 # clang-19 needs stdc++14.2 see https://github.com/llvm/llvm-project/issues/102336
sudo apt install clang-19
- if: matrix.os == 'ubuntu-24.04'
name: Configure (Linux)
run: >
mkdir build && cd build && cmake ..
-DCMAKE_C_COMPILER=${{matrix.c}}
-DCMAKE_CXX_COMPILER=${{matrix.cxx}}
${{matrix.cmake_args}}
-DCMAKE_BUILD_TYPE=${{matrix.build}}
-DCMAKE_CXX_FLAGS="${{matrix.feature[2]}}"
-DLANGULUS_ALIGNMENT=${{matrix.feature[1]}}
-DLANGULUS_TESTING=ON
- if: matrix.os == 'windows-latest'
name: Configure (Windows)
run: >
mkdir build && cd build && cmake ..
${{matrix.cmake_args}} -T "${{matrix.cxx}}"
-DCMAKE_BUILD_TYPE=${{matrix.build}}
-DCMAKE_CXX_FLAGS="${{matrix.feature[3]}} /EHsc"
-DLANGULUS_ALIGNMENT=${{matrix.feature[1]}}
-DLANGULUS_TESTING=ON
- name: Build
run: cmake --build build -j4 --config ${{matrix.build}}
- name: Test
run: cd build && ctest -V -C ${{matrix.build}}