Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vectorized bin-sort singlethreaded #562

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
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
184 changes: 180 additions & 4 deletions src/spreadinterp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <vector>

using namespace std;
Expand Down Expand Up @@ -57,7 +58,7 @@
template<typename T, std::size_t N, std::size_t M, std::size_t PaddedM>
constexpr std::array<std::array<T, PaddedM>, N> pad_2D_array_with_zeros(
const std::array<std::array<T, M>, N> &input) noexcept;
template<typename T> FINUFFT_ALWAYS_INLINE auto xsimd_to_array(const T &vec) noexcept;

Check warning on line 61 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, Off, Release, cl, cl, On)

'inline': used more than once

Check warning on line 61 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 61 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 61 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Release, cl, cl, On)

'inline': used more than once

FINUFFT_NEVER_INLINE
void print_subgrid_info(int ndims, BIGINT offset1, BIGINT offset2, BIGINT offset3,
Expand All @@ -68,21 +69,21 @@
template<uint8_t ns, uint8_t kerevalmeth, class T,
class simd_type = xsimd::make_sized_batch_t<T, find_optimal_simd_width<T, ns>()>,
typename... V>
static FINUFFT_ALWAYS_INLINE auto ker_eval(FLT *FINUFFT_RESTRICT ker,

Check warning on line 72 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, Off, Release, cl, cl, On)

'inline': used more than once

Check warning on line 72 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 72 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 72 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Release, cl, cl, On)

'inline': used more than once
const finufft_spread_opts &opts,
const V... elems) noexcept;
static FINUFFT_ALWAYS_INLINE FLT fold_rescale(FLT x, UBIGINT N) noexcept;

Check warning on line 75 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, Off, Release, cl, cl, On)

'inline': used more than once

Check warning on line 75 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 75 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 75 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Release, cl, cl, On)

'inline': used more than once
template<class simd_type>
FINUFFT_ALWAYS_INLINE static simd_type fold_rescale(const simd_type &x,
UBIGINT N) noexcept;
static FINUFFT_ALWAYS_INLINE simd_type fold_rescale(const simd_type &x,

Check warning on line 77 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, Off, Release, cl, cl, On)

'inline': used more than once

Check warning on line 77 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 77 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 77 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Release, cl, cl, On)

'inline': used more than once
const BIGINT N) noexcept;
static FINUFFT_ALWAYS_INLINE void set_kernel_args(

Check warning on line 79 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, Off, Release, cl, cl, On)

'inline': used more than once

Check warning on line 79 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 79 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 79 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Release, cl, cl, On)

'inline': used more than once
FLT *args, FLT x, const finufft_spread_opts &opts) noexcept;
static FINUFFT_ALWAYS_INLINE void evaluate_kernel_vector(

Check warning on line 81 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, Off, Release, cl, cl, On)

'inline': used more than once

Check warning on line 81 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 81 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 81 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Release, cl, cl, On)

'inline': used more than once
FLT *ker, FLT *args, const finufft_spread_opts &opts) noexcept;
template<uint8_t w, uint8_t upsampfact,
class simd_type =
xsimd::make_sized_batch_t<FLT, find_optimal_simd_width<FLT, w>()>> // aka ns
static FINUFFT_ALWAYS_INLINE void eval_kernel_vec_Horner(

Check warning on line 86 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, Off, Release, cl, cl, On)

'inline': used more than once

Check warning on line 86 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 86 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 86 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Release, cl, cl, On)

'inline': used more than once
FLT *FINUFFT_RESTRICT ker, FLT x, const finufft_spread_opts &opts) noexcept;
template<uint8_t ns, class simd_type = PaddedSIMD<FLT, 2 * ns>>
static void interp_line(FLT *FINUFFT_RESTRICT target, const FLT *du, const FLT *ker,
Expand Down Expand Up @@ -114,6 +115,10 @@
const FLT *kz, UBIGINT N1, UBIGINT N2, UBIGINT N3,
double bin_size_x, double bin_size_y, double bin_size_z,
int debug);
static void bin_sort_singlethread_vector(BIGINT *ret, UBIGINT M, const FLT *kx,
const FLT *ky, const FLT *kz, UBIGINT N1,
UBIGINT N2, UBIGINT N3, double bin_size_x,
double bin_size_y, double bin_size_z, int debug);
void bin_sort_multithread(BIGINT *ret, UBIGINT M, FLT *kx, FLT *ky, FLT *kz, UBIGINT N1,
UBIGINT N2, UBIGINT N3, double bin_size_x, double bin_size_y,
double bin_size_z, int debug, int nthr);
Expand Down Expand Up @@ -296,8 +301,8 @@
if (sort_nthr == 0) // multithreaded auto choice: when N>>M, one thread is better!
sort_nthr = (10 * M > N) ? maxnthr : 1; // heuristic
if (sort_nthr == 1)
bin_sort_singlethread(sort_indices, M, kx, ky, kz, N1, N2, N3, bin_size_x,
bin_size_y, bin_size_z, sort_debug);
bin_sort_singlethread_vector(sort_indices, M, kx, ky, kz, N1, N2, N3, bin_size_x,
bin_size_y, bin_size_z, sort_debug);
else // sort_nthr>1, user fixes # threads (>=2)
bin_sort_multithread(sort_indices, M, kx, ky, kz, N1, N2, N3, bin_size_x,
bin_size_y, bin_size_z, sort_debug, sort_nthr);
Expand Down Expand Up @@ -456,7 +461,7 @@
} // end main loop over subprobs
}
if (opts.debug)
printf("\tt1 fancy spread: \t%.3g s (%ld subprobs)\n", timer.elapsedsec(), nb);

Check warning on line 464 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=x86-64, On, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'unsigned long long' [-Wformat]

Check warning on line 464 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=native, Off, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'unsigned long long' [-Wformat]

Check warning on line 464 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, Off, Release, cl, cl, On)

'printf' : format string '%ld' requires an argument of type 'long', but variadic argument 2 has type '_Ty'

Check warning on line 464 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, On, Release, cl, cl, On)

'printf' : format string '%ld' requires an argument of type 'long', but variadic argument 2 has type '_Ty'

Check warning on line 464 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, Off, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'unsigned long long' [-Wformat]

Check warning on line 464 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, Off, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'unsigned long long' [-Wformat]

Check warning on line 464 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=x86-64, Off, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'unsigned long long' [-Wformat]

Check warning on line 464 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=x86-64, Off, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'unsigned long long' [-Wformat]

Check warning on line 464 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Release, cl, cl, On)

'printf' : format string '%ld' requires an argument of type 'long', but variadic argument 2 has type '_Ty'

Check warning on line 464 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Release, cl, cl, On)

'printf' : format string '%ld' requires an argument of type 'long', but variadic argument 2 has type '_Ty'

Check warning on line 464 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, On, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'unsigned long long' [-Wformat]

Check warning on line 464 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, On, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'unsigned long long' [-Wformat]
} // end of choice of which t1 spread type to use
return 0;
};
Expand Down Expand Up @@ -825,7 +830,7 @@
simd_type k_prev, k_sym{0};
for (uint8_t i{0}, offset = offset_start; i < end_idx;
i += simd_size, offset -= simd_size) {
auto k_odd = [i]() constexpr noexcept {

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, Off)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, Off)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, Off)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, Off)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, Off)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, Off)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, Off)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, Off)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, On)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, On)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, On)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, On)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, Off)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, Off)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, Off)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, Off)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, On)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, On)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, On)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, On)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, On)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, On)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, On)

lambda capture 'i' is not used [-Wunused-lambda-capture]

Check warning on line 833 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, On)

lambda capture 'i' is not used [-Wunused-lambda-capture]
if constexpr (if_odd_degree) {
return simd_type::load_aligned(padded_coeffs[0].data() + i);
} else {
Expand Down Expand Up @@ -934,7 +939,7 @@
*/
using arch_t = typename simd_type::arch_type;
static constexpr auto padding = get_padding<FLT, 2 * ns>();
static constexpr auto alignment = arch_t::alignment();

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 942 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]
static constexpr auto simd_size = simd_type::size;
static constexpr auto regular_part = (2 * ns + padding) & (-(2 * simd_size));
std::array<FLT, 2> out{0};
Expand Down Expand Up @@ -1087,7 +1092,7 @@
// no wrapping: avoid ptrs
using arch_t = typename simd_type::arch_type;
static constexpr auto padding = get_padding<FLT, 2 * ns>();
static constexpr auto alignment = arch_t::alignment();

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1095 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]
static constexpr auto simd_size = simd_type::size;
static constexpr uint8_t line_vectors = (2 * ns + padding) / simd_size;
if (i1 >= 0 && i1 + ns <= N1 && i2 >= 0 && i2 + ns <= N2 &&
Expand Down Expand Up @@ -1252,9 +1257,9 @@
{
using arch_t = typename simd_type::arch_type;
static constexpr auto padding = get_padding<FLT, 2 * ns>();
static constexpr auto alignment = arch_t::alignment();

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, Off)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, Off)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, On)

unused variable 'alignment' [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]

Check warning on line 1260 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, On)

unused variable ‘alignment’ [-Wunused-variable]
static constexpr auto simd_size = simd_type::size;
static constexpr auto ker23_size = (ns + simd_size - 1) & -simd_size;

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, Off)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, Off)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, Off)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, Off)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, Off)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, Off)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, Off)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, Off)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, On)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, On)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, Off)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, Off)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, On)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, On)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, On)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, On)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, On)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, On)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, Off)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, Off)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, On)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, On)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, Off)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, Off)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, Off)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, Off)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, Off)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, Off)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, Off)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, Off)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, On)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, On)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, On)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, On)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, Off)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, Off)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, Off)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, Off)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, On)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, On)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, On)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, On)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, On)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, On)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, On)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, On)

unused variable 'ker23_size' [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, On)

unused variable ‘ker23_size’ [-Wunused-variable]

Check warning on line 1262 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, On)

unused variable ‘ker23_size’ [-Wunused-variable]
static constexpr uint8_t line_vectors = (2 * ns + padding) / simd_size;
const auto in_bounds_1 = (i1 >= 0) & (i1 + ns <= N1);
const auto in_bounds_2 = (i2 >= 0) & (i2 + ns <= N2);
Expand Down Expand Up @@ -1841,6 +1846,177 @@
}
}

template<typename simd_type, std::size_t... Is>
static FINUFFT_ALWAYS_INLINE simd_type make_incremented_vectors(

Check warning on line 1850 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, Off, Release, cl, cl, On)

'inline': used more than once

Check warning on line 1850 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 1850 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 1850 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Release, cl, cl, On)

'inline': used more than once
std::index_sequence<Is...>) {
return simd_type{Is...}; // Creates a SIMD vector with the index sequence
}

template<std::size_t N, typename simd_type>
static FINUFFT_ALWAYS_INLINE bool has_duplicates_impl(const simd_type &vec) noexcept {

Check warning on line 1856 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, Off, Release, cl, cl, On)

'inline': used more than once

Check warning on line 1856 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 1856 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Release, cl, cl, On)

'inline': used more than once

Check warning on line 1856 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Release, cl, cl, On)

'inline': used more than once

if constexpr (N == simd_type::size) {
return false;
} else {
const auto duplicates =

Check failure on line 1861 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, native, On, Debug, cl, cl, On)

'duplicates': const object must be initialized

Check failure on line 1861 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, native, On, Debug, cl, cl, On)

'duplicates': const object must be initialized

Check failure on line 1861 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, Off, Release, cl, cl, On)

'duplicates': const object must be initialized

Check failure on line 1861 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, Off, Release, cl, cl, On)

'duplicates': const object must be initialized

Check failure on line 1861 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, On, Release, cl, cl, On)

'duplicates': const object must be initialized

Check failure on line 1861 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Debug, cl, cl, On)

'duplicates': const object must be initialized

Check failure on line 1861 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Debug, cl, cl, On)

'duplicates': const object must be initialized

Check failure on line 1861 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Debug, cl, cl, On)

'duplicates': const object must be initialized

Check failure on line 1861 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Debug, cl, cl, On)

'duplicates': const object must be initialized

Check failure on line 1861 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Release, cl, cl, On)

'duplicates': const object must be initialized

Check failure on line 1861 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Release, cl, cl, On)

'duplicates': const object must be initialized

Check failure on line 1861 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Release, cl, cl, On)

'duplicates': const object must be initialized

Check failure on line 1861 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Release, cl, cl, On)

'duplicates': const object must be initialized
(xsimd::rotate_right<N>(vec) == vec) != xsimd::batch_bool<bool>(false);

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Release, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Release, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Release, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::fma3<xsimd::avx2> >’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Release, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::fma3<xsimd::avx2> >’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Release, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Release, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Release, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::fma3<xsimd::avx2> >’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Release, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::fma3<xsimd::avx2> >’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Release, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::fma3<xsimd::avx2> >’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Release, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::fma3<xsimd::avx2> >’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Debug, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Release, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::fma3<xsimd::avx2> >’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Release, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::fma3<xsimd::avx2> >’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Release, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Release, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Debug, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, On, Release, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::fma3<xsimd::avx2> >’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Release, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::fma3<xsimd::avx2> >’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Release, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::fma3<xsimd::avx2> >’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Release, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Debug, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Release, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, On, Debug, gcc, g++, Off)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=native, Off, Debug, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Release, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::fma3<xsimd::avx2> >’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, On, Release, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::fma3<xsimd::avx2> >’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Release, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::fma3<xsimd::avx2> >’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, native, Off, Release, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<long int, xsimd::fma3<xsimd::avx2> >’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Release, clang, clang++, Off)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Debug, clang, clang++, On)

invalid operands to binary expression ('batch_bool<long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, gcc, -march=x86-64, Off, Debug, gcc, g++, On)

no match for ‘operator!=’ (operand types are ‘xsimd::batch_bool<int, xsimd::sse2>’ and ‘xsimd::batch_bool<bool>’)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (ubuntu-22.04, llvm, -march=x86-64, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=x86-64, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=x86-64, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=x86-64, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, native, On, Debug, cl, cl, On)

binary '!=': no operator found which takes a left-hand operand of type 'xsimd::batch_bool<T,A>' (or there is no acceptable conversion)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, native, On, Debug, cl, cl, On)

binary '!=': no operator found which takes a left-hand operand of type 'xsimd::batch_bool<T,A>' (or there is no acceptable conversion)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, Off, Release, cl, cl, On)

binary '!=': no operator found which takes a left-hand operand of type 'xsimd::batch_bool<T,A>' (or there is no acceptable conversion)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, Off, Release, cl, cl, On)

binary '!=': no operator found which takes a left-hand operand of type 'xsimd::batch_bool<T,A>' (or there is no acceptable conversion)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, On, Release, cl, cl, On)

binary '!=': no operator found which takes a left-hand operand of type 'xsimd::batch_bool<T,A>' (or there is no acceptable conversion)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Debug, cl, cl, On)

binary '!=': no operator found which takes a left-hand operand of type 'xsimd::batch_bool<T,A>' (or there is no acceptable conversion)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Debug, cl, cl, On)

binary '!=': no operator found which takes a left-hand operand of type 'xsimd::batch_bool<T,A>' (or there is no acceptable conversion)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Debug, cl, cl, On)

binary '!=': no operator found which takes a left-hand operand of type 'xsimd::batch_bool<T,A>' (or there is no acceptable conversion)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Debug, cl, cl, On)

binary '!=': no operator found which takes a left-hand operand of type 'xsimd::batch_bool<T,A>' (or there is no acceptable conversion)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=x86-64, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=x86-64, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=x86-64, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=x86-64, Off, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<long long, sse2>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Release, cl, cl, On)

binary '!=': no operator found which takes a left-hand operand of type 'xsimd::batch_bool<T,A>' (or there is no acceptable conversion)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Release, cl, cl, On)

binary '!=': no operator found which takes a left-hand operand of type 'xsimd::batch_bool<T,A>' (or there is no acceptable conversion)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Release, cl, cl, On)

binary '!=': no operator found which takes a left-hand operand of type 'xsimd::batch_bool<T,A>' (or there is no acceptable conversion)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Release, cl, cl, On)

binary '!=': no operator found which takes a left-hand operand of type 'xsimd::batch_bool<T,A>' (or there is no acceptable conversion)

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')

Check failure on line 1862 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, On, Release, clang, clang++, On)

invalid operands to binary expression ('batch_bool<int, fma3<avx2>>' and 'xsimd::batch_bool<bool>')
if (duplicates) {

Check failure on line 1863 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, native, On, Debug, cl, cl, On)

'duplicates': cannot be used before it is initialized

Check failure on line 1863 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, native, On, Debug, cl, cl, On)

'duplicates': cannot be used before it is initialized

Check failure on line 1863 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, Off, Release, cl, cl, On)

'duplicates': cannot be used before it is initialized

Check failure on line 1863 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, Off, Release, cl, cl, On)

'duplicates': cannot be used before it is initialized

Check failure on line 1863 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:AVX2, On, Release, cl, cl, On)

'duplicates': cannot be used before it is initialized

Check failure on line 1863 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Debug, cl, cl, On)

'duplicates': cannot be used before it is initialized

Check failure on line 1863 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Debug, cl, cl, On)

'duplicates': cannot be used before it is initialized

Check failure on line 1863 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Debug, cl, cl, On)

'duplicates': cannot be used before it is initialized

Check failure on line 1863 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Debug, cl, cl, On)

'duplicates': cannot be used before it is initialized

Check failure on line 1863 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Release, cl, cl, On)

'duplicates': cannot be used before it is initialized

Check failure on line 1863 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, On, Release, cl, cl, On)

'duplicates': cannot be used before it is initialized

Check failure on line 1863 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Release, cl, cl, On)

'duplicates': cannot be used before it is initialized

Check failure on line 1863 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, msvc, /arch:SSE2, Off, Release, cl, cl, On)

'duplicates': cannot be used before it is initialized
return true;
}
return has_duplicates_impl<N + 1>(vec);
}
}

template<typename simd_type>
static FINUFFT_ALWAYS_INLINE bool has_duplicates(const simd_type &vec) noexcept {
return has_duplicates_impl<1, simd_type>(vec);
}

void bin_sort_singlethread_vector(
BIGINT *ret, const UBIGINT M, const FLT *kx, const FLT *ky, const FLT *kz,
const UBIGINT N1, const UBIGINT N2, const UBIGINT N3, const double bin_size_x,
const double bin_size_y, const double bin_size_z, const int debug)
/* Returns permutation of all nonuniform points with good RAM access,
* ie less cache misses for spreading, in 1D, 2D, or 3D. Single-threaded version
*
* This is achieved by binning into cuboids (of given bin_size within the
* overall box domain), then reading out the indices within
* these bins in a Cartesian cuboid ordering (x fastest, y med, z slowest).
* Finally the permutation is inverted, so that the good ordering is: the
* NU pt of index ret[0], the NU pt of index ret[1],..., NU pt of index ret[M-1]
*
* Inputs: M - number of input NU points.
* kx,ky,kz - length-M arrays of real coords of NU pts in [-pi, pi).
* Points outside this range are folded into it.
* N1,N2,N3 - integer sizes of overall box (N2=N3=1 for 1D, N3=1 for 2D)
* bin_size_x,y,z - what binning box size to use in each dimension
* (in rescaled coords where ranges are [0,Ni] ).
* For 1D, only bin_size_x is used; for 2D, it & bin_size_y.
* Output:
* writes to ret a vector list of indices, each in the range 0,..,M-1.
* Thus, ret must have been preallocated for M BIGINTs.
*
* Notes: I compared RAM usage against declaring an internal vector and passing
* back; the latter used more RAM and was slower.
* Avoided the bins array, as in JFM's spreader of 2016,
* tidied up, early 2017, Barnett.
* Timings (2017): 3s for M=1e8 NU pts on 1 core of i7; 5s on 1 core of xeon.
* Simplified by Martin Reinecke, 6/19/23 (no apparent effect on speed).
*/
{
using simd_type = xsimd::batch<FLT>;
using int_simd_type = xsimd::batch<xsimd::as_integer_t<FLT>>;
using arch_t = simd_type::arch_type;
static constexpr auto simd_size = simd_type::size;
static constexpr auto alignment = arch_t::alignment();

static constexpr auto to_array = [](const auto &vec) constexpr noexcept {
using T = decltype(std::decay_t<decltype(vec)>());
alignas(alignment) std::array<typename T::value_type, T::size> array{};
vec.store_aligned(array.data());
return array;
};

const auto isky = (N2 > 1), iskz = (N3 > 1); // ky,kz avail? (cannot access if not)
// here the +1 is needed to allow round-off error causing i1=N1/bin_size_x,
// for kx near +pi, ie foldrescale gives N1 (exact arith would be 0 to N1-1).
// Note that round-off near kx=-pi stably rounds negative to i1=0.
const auto nbins1 = BIGINT(FLT(N1) / bin_size_x + 1);
const auto nbins2 = isky ? BIGINT(FLT(N2) / bin_size_y + 1) : 1;
const auto nbins3 = iskz ? BIGINT(FLT(N3) / bin_size_z + 1) : 1;
const auto nbins = nbins1 * nbins2 * nbins3;
const auto inv_bin_size_x = FLT(1.0 / bin_size_x);
const auto inv_bin_size_y = FLT(1.0 / bin_size_y);
const auto inv_bin_size_z = FLT(1.0 / bin_size_z);
const auto inv_bin_size_x_vec = simd_type(1.0 / bin_size_x);
const auto inv_bin_size_y_vec = simd_type(1.0 / bin_size_y);
const auto inv_bin_size_z_vec = simd_type(1.0 / bin_size_z);
const auto zero = to_int(simd_type(0));
const auto increment =
to_int(make_incremented_vectors<simd_type>(std::make_index_sequence<simd_size>{}));

// count how many pts in each bin
alignas(alignment) std::vector<xsimd::as_integer_t<FLT>> counts(nbins + simd_size, 0);
const auto simd_M = M & (-simd_size); // round down to simd_size multiple
UBIGINT i{};
for (i = 0; i < simd_M; i += simd_size) {
const auto i1 = xsimd::to_int(
fold_rescale(simd_type::load_unaligned(kx + i), N1) * inv_bin_size_x_vec);
const auto i2 =
isky ? xsimd::to_int(fold_rescale(simd_type::load_unaligned(ky + i), N2) *
inv_bin_size_y_vec)
: zero;
const auto i3 =
iskz ? xsimd::to_int(fold_rescale(simd_type::load_unaligned(kz + i), N3) *
inv_bin_size_z_vec)
: zero;
const auto bin = i1 + nbins1 * (i2 + nbins2 * i3);
if (has_duplicates(bin)) {
const auto bin_array = to_array(bin);
for (int j = 0; j < simd_size; j++) {
++counts[bin_array[j]];
}
} else {
const auto bins = int_simd_type::gather(counts.data(), bin);
const auto incr_bins = xsimd::incr(bins);
incr_bins.scatter(counts.data(), bin);
}
}

for (; i < M; i++) {
// find the bin index in however many dims are needed
const auto i1 = BIGINT(fold_rescale(kx[i], N1) * inv_bin_size_x);
const auto i2 = isky ? BIGINT(fold_rescale(ky[i], N2) * inv_bin_size_y) : 0;
const auto i3 = iskz ? BIGINT(fold_rescale(kz[i], N3) * inv_bin_size_z) : 0;
const auto bin = i1 + nbins1 * (i2 + nbins2 * i3);
++counts[bin];
}

// compute the offsets directly in the counts array (no offset array)
BIGINT current_offset = 0;
for (i = 0; i < nbins; i++) {
BIGINT tmp = counts[i];
counts[i] = current_offset; // Reinecke's cute replacement of counts[i]
current_offset += tmp;
} // (counts now contains the index offsets for each bin)

for (i = 0; i < simd_M; i += simd_size) {
const auto i1 = xsimd::to_int(
fold_rescale(simd_type::load_unaligned(kx + i), N1) * inv_bin_size_x_vec);
const auto i2 =
isky ? xsimd::to_int(fold_rescale(simd_type::load_unaligned(ky + i), N2) *
inv_bin_size_y_vec)
: zero;
const auto i3 =
iskz ? xsimd::to_int(fold_rescale(simd_type::load_unaligned(kz + i), N3) *
inv_bin_size_z_vec)
: zero;
const auto bin = i1 + nbins1 * (i2 + nbins2 * i3);
if (has_duplicates(bin)) {
const auto bin_array = to_array(to_int(bin));
for (int j = 0; j < simd_size; j++) {
ret[counts[bin_array[j]]] = j + i;
counts[bin_array[j]]++;
}
} else {
const auto bins = decltype(bin)::gather(counts.data(), bin);
const auto incr_bins = xsimd::incr(bins);
incr_bins.scatter(counts.data(), bin);
const auto result = increment + int_simd_type(i);
result.scatter(ret, bins);
}
}
for (; i < M; i++) {
// find the bin index (again! but better than using RAM)
const auto i1 = BIGINT(fold_rescale(kx[i], N1) * inv_bin_size_x);
const auto i2 = isky ? BIGINT(fold_rescale(ky[i], N2) * inv_bin_size_y) : 0;
const auto i3 = iskz ? BIGINT(fold_rescale(kz[i], N3) * inv_bin_size_z) : 0;
const auto bin = i1 + nbins1 * (i2 + nbins2 * i3);
ret[counts[bin]] = i; // fill the inverse map on the fly
++counts[bin]; // update the offsets
}
}

void bin_sort_singlethread(
BIGINT *ret, const UBIGINT M, const FLT *kx, const FLT *ky, const FLT *kz,
const UBIGINT N1, const UBIGINT N2, const UBIGINT N3, const double bin_size_x,
Expand Down Expand Up @@ -2276,7 +2452,7 @@
void print_subgrid_info(int ndims, BIGINT offset1, BIGINT offset2, BIGINT offset3,
UBIGINT padded_size1, UBIGINT size1, UBIGINT size2, UBIGINT size3,
UBIGINT M0) {
printf("size1 %ld, padded_size1 %ld\n", size1, padded_size1);

Check warning on line 2455 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=x86-64, On, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'UBIGINT' (aka 'unsigned long long') [-Wformat]

Check warning on line 2455 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=x86-64, On, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'UBIGINT' (aka 'unsigned long long') [-Wformat]

Check warning on line 2455 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=native, Off, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'UBIGINT' (aka 'unsigned long long') [-Wformat]

Check warning on line 2455 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=native, Off, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'UBIGINT' (aka 'unsigned long long') [-Wformat]

Check warning on line 2455 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, Off, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'UBIGINT' (aka 'unsigned long long') [-Wformat]

Check warning on line 2455 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, Off, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'UBIGINT' (aka 'unsigned long long') [-Wformat]

Check warning on line 2455 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, Off, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'UBIGINT' (aka 'unsigned long long') [-Wformat]

Check warning on line 2455 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, Off, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'UBIGINT' (aka 'unsigned long long') [-Wformat]

Check warning on line 2455 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=x86-64, Off, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'UBIGINT' (aka 'unsigned long long') [-Wformat]

Check warning on line 2455 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=x86-64, Off, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'UBIGINT' (aka 'unsigned long long') [-Wformat]

Check warning on line 2455 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=x86-64, Off, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'UBIGINT' (aka 'unsigned long long') [-Wformat]

Check warning on line 2455 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, -march=x86-64, Off, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'UBIGINT' (aka 'unsigned long long') [-Wformat]

Check warning on line 2455 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, On, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'UBIGINT' (aka 'unsigned long long') [-Wformat]

Check warning on line 2455 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, On, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'UBIGINT' (aka 'unsigned long long') [-Wformat]

Check warning on line 2455 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, On, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'UBIGINT' (aka 'unsigned long long') [-Wformat]

Check warning on line 2455 in src/spreadinterp.cpp

View workflow job for this annotation

GitHub Actions / cmake-ci (windows-2022, llvm, native, On, Release, clang, clang++, On)

format specifies type 'long' but the argument has type 'UBIGINT' (aka 'unsigned long long') [-Wformat]
switch (ndims) {
case 1:
printf("\tsubgrid: off %lld\t siz %lld\t #NU %lld\n", (long long)offset1,
Expand Down
Loading