Skip to content

Commit 4050d94

Browse files
committed
Release 14.1.0
1 parent a356f00 commit 4050d94

File tree

2 files changed

+56
-1
lines changed

2 files changed

+56
-1
lines changed

Changelog.rst

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,61 @@
99
Changelog
1010
=========
1111

12+
14.1.0
13+
------
14+
15+
* Add popcnt and bmi
16+
17+
* [API] Add bitwise-shift batch constant api
18+
19+
* Refactor x86 CPU features
20+
21+
* [NEON] Unsigned bitwise shifts are never called
22+
23+
* Improve coverage of emulated architectures
24+
25+
* Introduce `count{l,r}_{zero,one}` for `batch_bool`
26+
27+
* Fix emulated mask()
28+
29+
* [neon] Implement bitwise_rshift for 64 bit integers on arm32
30+
31+
* Fix fast_cast int64/uint64→double under -ffast-math
32+
33+
* Small complexity reduction
34+
35+
* Add make_batch_constant from std::array in C++20
36+
37+
* [ci] Use home-baked clang-format action
38+
39+
* Fix apple detection
40+
41+
* [ci] add GCC 10 with AVX-512 to test matrix
42+
43+
* Slighly less pessimistic detection of neon64
44+
45+
* Fix runtime detection of SVE
46+
47+
* [ci] Setup Windows arm64 runner
48+
49+
* iota batch constant and a few overloads
50+
51+
* [test] Improve testing logging and accuracy
52+
53+
* Fix default values for AVX and AVX512 OS state enabled flags
54+
55+
* Implement batch_bool::mask() for riscv
56+
57+
* [ci] Revert emscripten to 4.0.21
58+
59+
* Restore RISCV support
60+
61+
* Implement optimized movemasks for NEON
62+
63+
* Fix limit behavior of atan2 under -ffast-math
64+
65+
* Move to C++14
66+
1267
14.0.0
1368
------
1469

include/xsimd/config/xsimd_config.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#define XSIMD_CONFIG_HPP
1414

1515
#define XSIMD_VERSION_MAJOR 14
16-
#define XSIMD_VERSION_MINOR 0
16+
#define XSIMD_VERSION_MINOR 1
1717
#define XSIMD_VERSION_PATCH 0
1818

1919
#if defined(__GNUC__) && defined(__BYTE_ORDER__)

0 commit comments

Comments
 (0)