We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2666309 commit ffaec96Copy full SHA for ffaec96
.azure-pipelines/azure-pipelines-linux-gcc.yml
@@ -29,6 +29,9 @@ jobs:
29
enable_xtl_complex: 1
30
gcc_9:
31
gcc_version: '9'
32
+ gcc_9_fast:
33
+ gcc_version: '9'
34
+ enable_fast_math: 1
35
pool:
36
vmImage: ubuntu-16.04
37
variables:
.azure-pipelines/unix-build.yml
@@ -39,6 +39,9 @@ steps:
39
if [[ $(force_no_instr_set) == 1 ]]; then
40
CMAKE_EXTRA_ARGS="$CMAKE_EXTRA_ARGS -DXSIMD_FORCE_X86_INSTR_SET=0 -DXSIMD_FORCE_X86_AMD_INSTR_SET=0";
41
fi
42
+ if [[ $(enable_fast_math) == 1 ]]; then
43
+ export CXXFLAGS=-ffast-math
44
+ fi
45
46
cmake -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX $CMAKE_EXTRA_ARGS -DDOWNLOAD_GTEST=ON -DXSIMD_ENABLE_WERROR=1 $(Build.SourcesDirectory)
47
displayName: Configure xsimd
0 commit comments