You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
⚪ 2024-05-12 13:38:21 UTC Pre-commit check for 215d7b2 has started.
⚪ 2024-05-12 13:38:24 UTC Build linux-x86_64-release-clang14 is running...
🟢 2024-05-12 13:39:40 UTC Build successful.
⚪ 2024-05-12 13:38:35 UTC Pre-commit check for 215d7b2 has started.
⚪ 2024-05-12 13:38:38 UTC Build linux-x86_64-relwithdebinfo is running...
🟢 2024-05-12 13:40:03 UTC Build successful.
⚪ 2024-05-12 13:41:31 UTC Tests are running...
🟢 2024-05-12 14:18:44 UTC Tests successful.
⚪ 2024-05-12 13:38:36 UTC Pre-commit check for 215d7b2 has started.
⚪ 2024-05-12 13:38:38 UTC Build linux-x86_64-release-asan is running...
🟢 2024-05-12 13:40:00 UTC Build successful.
⚪ 2024-05-12 13:41:31 UTC Tests are running...
🟢 2024-05-12 14:26:41 UTC Tests successful.
⚪ 2024-05-12 19:27:14 UTC Pre-commit check for 92162cb has started.
⚪ 2024-05-12 19:27:16 UTC Build linux-x86_64-release-clang14 is running...
🟢 2024-05-12 19:28:37 UTC Build successful.
⚪ 2024-05-12 19:27:23 UTC Pre-commit check for 92162cb has started.
⚪ 2024-05-12 19:27:26 UTC Build linux-x86_64-release-asan is running...
🟢 2024-05-12 19:28:46 UTC Build successful.
⚪ 2024-05-12 19:30:15 UTC Tests are running...
🟢 2024-05-12 20:16:51 UTC Tests successful.
⚪ 2024-05-12 19:27:46 UTC Pre-commit check for 92162cb has started.
⚪ 2024-05-12 19:27:48 UTC Build linux-x86_64-relwithdebinfo is running...
🟢 2024-05-12 19:29:08 UTC Build successful.
⚪ 2024-05-12 19:30:34 UTC Tests are running...
🔴 2024-05-12 20:07:03 UTC Some tests failed, follow the links below.
⚪ 2024-05-14 19:03:56 UTC Pre-commit check for 9411e2f has started.
⚪ 2024-05-14 19:03:58 UTC Build linux-x86_64-relwithdebinfo is running...
🟢 2024-05-14 19:04:58 UTC Build successful.
⚪ 2024-05-14 19:06:18 UTC Tests are running...
🔴 2024-05-14 19:42:39 UTC Some tests failed, follow the links below.
⚪ 2024-05-14 19:03:57 UTC Pre-commit check for 9411e2f has started.
⚪ 2024-05-14 19:03:58 UTC Build linux-x86_64-release-asan is running...
🟢 2024-05-14 19:05:05 UTC Build successful.
⚪ 2024-05-14 19:06:24 UTC Tests are running...
🔴 2024-05-14 19:53:17 UTC Some tests failed, follow the links below.
⚪ 2024-06-03 14:05:28 UTC Pre-commit check for 050d601 has started.
⚪ 2024-06-03 14:07:29 UTC Build linux-x86_64-release-clang14 is running...
🟢 2024-06-03 14:08:33 UTC Build successful.
⚪ 2024-06-03 14:05:56 UTC Pre-commit check for 050d601 has started.
⚪ 2024-06-03 14:07:51 UTC Build linux-x86_64-relwithdebinfo is running...
🟢 2024-06-03 14:08:50 UTC Build successful.
⚪ 2024-06-03 14:08:57 UTC Tests are running...
🔴 2024-06-03 14:44:16 UTC Some tests failed, follow the links below.
⚪ 2024-06-03 14:06:47 UTC Pre-commit check for 050d601 has started.
⚪ 2024-06-03 14:08:56 UTC Build linux-x86_64-release-asan is running...
🟢 2024-06-03 14:10:05 UTC Build successful.
⚪ 2024-06-03 14:10:20 UTC Tests are running...
🔴 2024-06-03 14:57:04 UTC Some tests failed, follow the links below.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changelog entry
Serialization functions
Previously
ToBinaryString
serialized float vector as is. It has been removed.New serialization functions:
ToBinaryStringFloat
- save float as is;ToBinaryStringUint8
- save as Uint8, all the elements are casted to integers in [0;255] range;ToBinaryStringInt8
- save as Int8, all the elements are casted to integers in [-128;127] range;ToBinaryStringBit
- save as one bit per element, non positive 0 save as 0, positive as 1.All serialization functions return tagged string.
Deserialization function
Deserialization function
FromBinaryString
renamed toFloatFromBinaryString
.It uses tagged string parameters to check type on compile time.
Distance functions
All distance functions use tagged string parameters to check type on compile time.
New distance functions:
ManhattanDistance
EuclideanDistance
Changelog category
Additional information
...