Skip to content

Commit

Permalink
1.0.2 release candidate
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 484462458
  • Loading branch information
jan-wassenberg authored and copybara-github committed Oct 28, 2022
1 parent 70bc6dc commit 293693e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if(POLICY CMP0111)
cmake_policy(SET CMP0111 OLD)
endif()

project(hwy VERSION 1.0.1) # Keep in sync with highway.h version
project(hwy VERSION 1.0.2) # Keep in sync with highway.h version

# Directly define the ABI version from the cmake project() version values:
set(LIBRARY_VERSION "${hwy_VERSION}")
Expand Down
15 changes: 15 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
highway (1.0.2-1) UNRELEASED; urgency=medium

* Add ExclusiveNeither, FindKnownFirstTrue, Ne128
* Add 16-bit SumOfLanes/ReorderWidenMulAccumulate/ReorderDemote2To
* Faster sort for low-entropy input, improved pivot selection
* Add GN build system, Highway FAQ, k32v32 type to vqsort
* CMake: Support find_package(GTest), add rvv-inl.h, add HWY_ENABLE_TESTS
* Fix MIPS and C++20 build, Apple LLVM 10.3 detection, EMU128 AllTrue on RVV
* Fix missing exec_prefix, RVV build, warnings, libatomic linking
* Work around GCC 10.4 issue, disabled RDCYCLE, arm7 with vfpv3
* Documentation/example improvements
* Support static dispatch to SVE2_128 and SVE_256

-- Jan Wassenberg <janwas@google.com> Thu, 27 Oct 2022 17:00:00 +0200

highway (1.0.1-1) UNRELEASED; urgency=medium

* Add Eq128, i64 Mul, unsigned->float ConvertTo
Expand Down
2 changes: 1 addition & 1 deletion hwy/highway.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace hwy {
// API version (https://semver.org/); keep in sync with CMakeLists.txt.
#define HWY_MAJOR 1
#define HWY_MINOR 0
#define HWY_PATCH 1
#define HWY_PATCH 2

//------------------------------------------------------------------------------
// Shorthand for tags (defined in shared-inl.h) used to select overloads.
Expand Down

0 comments on commit 293693e

Please sign in to comment.