We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efe8c0b commit da46473Copy full SHA for da46473
.github/workflows/linux.yml
@@ -27,6 +27,7 @@ jobs:
27
- { compiler: 'clang', version: '12', flags: 'avx' }
28
- { compiler: 'clang', version: '13', flags: 'sse3' }
29
- { compiler: 'clang', version: '14', flags: 'avx512' }
30
+ - { compiler: 'clang', version: '15', flags: 'fma4' }
31
steps:
32
- name: Setup compiler
33
if: ${{ matrix.sys.compiler == 'gcc' }}
@@ -86,6 +87,9 @@ jobs:
86
87
if [[ '${{ matrix.sys.flags }}' == 'avx' ]]; then
88
CMAKE_EXTRA_ARGS="$CMAKE_EXTRA_ARGS -DTARGET_ARCH=sandybridge"
89
fi
90
+ if [[ '${{ matrix.sys.flags }}' == 'fma4' ]]; then
91
+ CMAKE_EXTRA_ARGS="$CMAKE_EXTRA_ARGS -DTARGET_ARCH=bdver1"
92
+ fi
93
if [[ '${{ matrix.sys.flags }}' == 'sse3' ]]; then
94
CMAKE_EXTRA_ARGS="$CMAKE_EXTRA_ARGS -DTARGET_ARCH=nocona"
95
0 commit comments