Skip to content

Commit f75290c

Browse files
committed
Fixed CI
1 parent 19fe81d commit f75290c

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

Diff for: .github/workflows/ci.yml

+19-3
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,30 @@ jobs:
8888
# see https://github.com/Langulus/SIMD/issues/22 for more info and updates on the situation
8989
- arch: x86
9090
cxx: v143
91+
feature: [SSE2, 16, '-msse2', '/arch:SSE2']
92+
- arch: x86
93+
cxx: v143
94+
feature: [SSE3, 16, '-msse3', '<not available on msvc>']
95+
- arch: x86
96+
cxx: v143
97+
feature: [SSSE3, 16, '-mssse3', '<not available on msvc>']
98+
- arch: x86
99+
cxx: v143
100+
feature: [SSE4.1, 16, '-msse4.1', '<not available on msvc>']
101+
- arch: x86
102+
cxx: v143
103+
feature: [SSE4.2, 16, '-msse4.2', '<not available on msvc>']
104+
- arch: x86
105+
cxx: v143
106+
feature: [AVX, 32, '-mavx', '/arch:AVX']
107+
- arch: x86
108+
cxx: v143
109+
feature: [AVX2, 32, '-mavx2', '/arch:AVX2']
91110

92111
# Seems the cloud at github doesn't have the avx512 extensions
93112
- feature: [AVX512, 64, '-mavx512f', '/arch:AVX512']
94113

95114
include:
96-
- arch: x86
97-
cxx: v143
98-
feature: [NoSIMD, 16, ' ', '/arch:IA32']
99115
- cxx: g++-14
100116
c: gcc-14
101117
- cxx: clang++-19

0 commit comments

Comments
 (0)