xsimd icon indicating copy to clipboard operation
xsimd copied to clipboard

C++ wrappers for SIMD intrinsics and parallelized, optimized mathematical functions (SSE, AVX, AVX512, NEON, SVE))

Results 111 xsimd issues
Sort by recently updated
recently updated
newest added

First, sorry for the long issue, or if it's wildly off-base. Compiler architecture flags change both the set of instructions available (through intrinsics) and the set of instructions used by...

I get a number of errors when building latest xtensor tests against xsimd 8.0.3 on MSVC with latest Visual Studio v16.11.5. The problem is here reported for test_xdatesupport, but appears...

Does xsimd provide support for padding dimension when specific sizes are not available for SIMD operations?

It could be interesting to support RISC-V SIMD or Vector extension. The latter looks very promising as the vector length and data type can be changed at run-time, and is...

:wave: While debugging the still bad codegen of MSVC, I realised that on reasonably big functions, it doesn't inline any of the xsimd functions even when marked as `inline`. The...

👋 Vc has a "Scalar" architecture that allows the library to be used without targeting any particular ISA, hence doing all computations on individual values. xsimd does have something similar...

This patch enables building arm/neon with MSVC compiler for windows on arm64 target and contains following changes, - Replace the dispatcher mechanism and use an explicit function selection using scalar...

XSIMD library cannot be built using MSVC compiler on a windows/arm64 target. ### Steps to reproduce Visual Studio 2019 or higher is required for compilation. Compilation can be done natively...

The lgamma test with negative inputs have been disabled for architecture supporting AVX but not AVX2, because they lead to small differences for a few inputs: ```bash idx = 1533...