Skip to content

Commit 0b66c20

Browse files
committed
add back avx2
1 parent 5a042ab commit 0b66c20

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Changelog
22

3+
## [3.3.0] - 2025-01-18
4+
### Changed
5+
- add C++11 and C++14 support
6+
37
## [3.2.0] - 2024-12-17
48
### Performance
59
- improve calculation of min score inside partial_ratio so it can skip more alignments

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
3232
message(FATAL_ERROR "Building in-source is not supported! Create a build dir and remove ${CMAKE_SOURCE_DIR}/CMakeCache.txt")
3333
endif()
3434

35-
project(rapidfuzz LANGUAGES CXX VERSION 3.2.0)
35+
project(rapidfuzz LANGUAGES CXX VERSION 3.3.0)
3636

3737
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
3838
include(GNUInstallDirs)

rapidfuzz/details/simd.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/* RAPIDFUZZ_LTO_HACK is used to differentiate functions between different
77
* translation units to avoid warnings when using lto */
88
#ifndef RAPIDFUZZ_EXCLUDE_SIMD
9-
# if 0//__AVX2__
9+
# if __AVX2__
1010
# define RAPIDFUZZ_SIMD
1111
# define RAPIDFUZZ_AVX2
1212
# define RAPIDFUZZ_LTO_HACK 0

0 commit comments

Comments
 (0)