Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
# Define env vars #
###################
env:
HEXL_VER: 1.2.5
HEXL_VER: 1.2.6
HEXL_DIR: ${GITHUB_WORKSPACE}/lib/cmake/hexl-${HEXL_VER}
HEXL_HINT_DIR: >
-DHEXL_HINT_DIR=${GITHUB_WORKSPACE}/lib/cmake/hexl-${HEXL_VER}
Expand Down
11 changes: 10 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
# Changes

## Version 1.2.5
## Version 1.2.6
- Update documentation to make a reference to OpenFHE
- Complies with Clang-Format +11
- Fixes EltwiseFMAMod Failing on 52 bits modulus (https://github.com/IntelLabs/hexl/pull/136)
- Fixes Check Bounds for avx512 reduction mod_2 (https://github.com/IntelLabs/hexl/pull/153)
- Fixes Destructor error (https://github.com/IntelLabs/hexl/pull/159)
- Updates to CI/CD
- Add SECURITY.md for OSSF Scorecard compliance
- Added workflow permissions to meet OpenSSF Scorecard requirements

## Version 1.2.5
- Adds experimental FFT-like (https://github.com/intel/hexl/pull/104)
- Adds big moduli tests for IFMA (https://github.com/intel/hexl/pull/123)
- Fixes HEXL's example build (https://github.com/intel/hexl/pull/114)
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# target_link_options and cmake -S . -B build require cmake 3.13
cmake_minimum_required(VERSION 3.13)
project(HEXL VERSION 1.2.5 LANGUAGES C CXX)
project(HEXL VERSION 1.2.6 LANGUAGES C CXX)

include(CheckCCompilerFlag)
include(CheckCXXCompilerFlag)
Expand Down
2 changes: 1 addition & 1 deletion CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# SPDX-License-Identifier: Apache-2.0

# Default codeowner for all files
* @intel/hexl-maintain
* @IntelLabs/hexl-maintain
4 changes: 2 additions & 2 deletions example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ Once you have installed Intel HE Acceleration Library. Then, in your external
application, add the following lines to your `CMakeLists.txt`:

```bash
find_package(HEXL 1.2.5
find_package(HEXL 1.2.6
HINTS ${HEXL_HINT_DIR}
REQUIRED)
target_link_libraries(<your target> HEXL::hexl)
```
If Intel HE Acceleration Library is installed globally, `HEXL_HINT_DIR` is not
needed. Otherwise, `HEXL_HINT_DIR` should be the directory containing
`HEXLConfig.cmake`, e.g. `${CMAKE_INSTALL_PREFIX}/lib/cmake/hexl-1.2.5/`
`HEXLConfig.cmake`, e.g. `${CMAKE_INSTALL_PREFIX}/lib/cmake/hexl-1.2.6/`

## Method 2 (pkgconfig)

Expand Down
2 changes: 1 addition & 1 deletion example/cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.13)
set(CMAKE_CXX_STANDARD 17)

# Example using source
find_package(HEXL 1.2.5
find_package(HEXL 1.2.6
HINTS ${HEXL_HINT_DIR}
REQUIRED)
if (NOT TARGET HEXL::hexl)
Expand Down
4 changes: 2 additions & 2 deletions example/vcpkg/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"dependencies": [
{
"name": "hexl",
"version>=": "1.2.5"
"version>=": "1.2.6"
}
],
"builtin-baseline": "7baf7bc9f3390bab2f47e2bcbd35b065663bc80d",
"overrides": [
{ "name": "hexl", "version": "1.2.1", "port-version": 0}
{ "name": "hexl", "version": "1.2.6", "port-version": 0}
]
}
2 changes: 1 addition & 1 deletion port/hexl/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ vcpkg_cmake_configure(
)

vcpkg_cmake_install()
vcpkg_cmake_config_fixup(PACKAGE_NAME "HEXL" CONFIG_PATH "lib/cmake/hexl-1.2.5")
vcpkg_cmake_config_fixup(PACKAGE_NAME "HEXL" CONFIG_PATH "lib/cmake/hexl-1.2.6")

vcpkg_fixup_pkgconfig()

Expand Down
2 changes: 1 addition & 1 deletion port/hexl/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hexl",
"version": "1.2.5",
"version": "1.2.6",
"description": "Intel® HEXL is an open-source library which provides efficient implementations of integer arithmetic on Galois fields.",
"homepage": "https://github.com/intel/hexl",
"supports": "x64 & !(windows & !static)",
Expand Down