Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions core/base/src/TColorGradient.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@
fColors.assign(colors, colors + nPoints * 4);

Double_t sum[4] = { 0., 0., 0., 0. };
// Clang vectoriser bug. The loop can break with -O2 -mavx2 or similar.
// https://github.com/llvm/llvm-project/issues/194008
#pragma clang loop vectorize(disable)

Check warning on line 116 in core/base/src/TColorGradient.cxx

View workflow job for this annotation

GitHub Actions / fedora44

ignoring ‘#pragma clang loop’ [-Wunknown-pragmas]

Check warning on line 116 in core/base/src/TColorGradient.cxx

View workflow job for this annotation

GitHub Actions / alma8

ignoring #pragma clang loop [-Wunknown-pragmas]

Check warning on line 116 in core/base/src/TColorGradient.cxx

View workflow job for this annotation

GitHub Actions / alma9 CMAKE_BUILD_TYPE=Debug

ignoring ‘#pragma clang loop’ [-Wunknown-pragmas]

Check warning on line 116 in core/base/src/TColorGradient.cxx

View workflow job for this annotation

GitHub Actions / alma10 arm64 CMAKE_BUILD_TYPE=RelWithDebInfo, builtin_zlib=ON, builtin_zstd=ON, CMAKE_CXX_STANDARD=20

ignoring ‘#pragma clang loop’ [-Wunknown-pragmas]

Check failure on line 116 in core/base/src/TColorGradient.cxx

View workflow job for this annotation

GitHub Actions / debian13 dev=ON, CMAKE_CXX_FLAGS=-Wsuggest-override

ignoring ‘#pragma clang loop’ [-Werror=unknown-pragmas]

Check warning on line 116 in core/base/src/TColorGradient.cxx

View workflow job for this annotation

GitHub Actions / alma10 minimal build CMAKE_CXX_STANDARD=20

ignoring ‘#pragma clang loop’ [-Wunknown-pragmas]

Check warning on line 116 in core/base/src/TColorGradient.cxx

View workflow job for this annotation

GitHub Actions / ubuntu2404 CMAKE_BUILD_TYPE=Debug

ignoring ‘#pragma clang loop’ [-Wunknown-pragmas]

Check warning on line 116 in core/base/src/TColorGradient.cxx

View workflow job for this annotation

GitHub Actions / alma10 benchmark build CMAKE_CXX_STANDARD=20

ignoring ‘#pragma clang loop’ [-Wunknown-pragmas]

Check warning on line 116 in core/base/src/TColorGradient.cxx

View workflow job for this annotation

GitHub Actions / alma10

ignoring ‘#pragma clang loop’ [-Wunknown-pragmas]

Check warning on line 116 in core/base/src/TColorGradient.cxx

View workflow job for this annotation

GitHub Actions / rawhide Fedora pydebug CMAKE_CXX_STANDARD=23

ignoring ‘#pragma clang loop’ [-Wunknown-pragmas]

Check warning on line 116 in core/base/src/TColorGradient.cxx

View workflow job for this annotation

GitHub Actions / ubuntu2604

ignoring ‘#pragma clang loop’ [-Wunknown-pragmas]

Check warning on line 116 in core/base/src/TColorGradient.cxx

View workflow job for this annotation

GitHub Actions / ubuntu22 imt=Off, CMAKE_BUILD_TYPE=Debug

ignoring ‘#pragma clang loop’ [-Wunknown-pragmas]

Check warning on line 116 in core/base/src/TColorGradient.cxx

View workflow job for this annotation

GitHub Actions / alma9 modules_off CMAKE_CXX_STANDARD=20

ignoring ‘#pragma clang loop’ [-Wunknown-pragmas]

Check warning on line 116 in core/base/src/TColorGradient.cxx

View workflow job for this annotation

GitHub Actions / fedora43

ignoring ‘#pragma clang loop’ [-Wunknown-pragmas]

Check warning on line 116 in core/base/src/TColorGradient.cxx

View workflow job for this annotation

GitHub Actions / opensuse15 march_native

ignoring ‘#pragma clang loop’ [-Wunknown-pragmas]
for (unsigned n = 0; n < fColors.size(); ++n)
sum[n % 4] += fColors[n];

Expand Down
Loading