highway-1.1.0

Introduction to highway

The highway package contains a C++ library that provides portable SIMD/vector intrinsics.

[Note]

Note

Development versions of BLFS may not build or run some packages properly if LFS or dependencies have been updated since the most recent stable versions of the books.

Package Information

highway Dependencies

Required

CMake-3.29.2

Installation of highway

Install highway by running the following commands:

mkdir build &&
cd    build &&

cmake -D CMAKE_INSTALL_PREFIX=/usr \
      -D CMAKE_BUILD_TYPE=Release  \
      -D BUILD_TESTING=OFF         \
      -D BUILD_SHARED_LIBS=ON      \
      -G Ninja ..                  &&
ninja

This package does come with a test suite, but it requires gtest, which is not in BLFS.

Now, as the root user:

ninja install

Command Explanations

-DBUILD_TESTING=OFF: This parameter disables the test suite from being built because gtest is not part of BLFS. Without this parameter, CMake will download this package during the configuration process. If you wish to run the tests, install gtest and then remove this parameter.

-DBUILD_SHARED_LIBS=ON: This parameter enables building shared versions of the libraries instead of static versions.

Contents

Installed Programs: None
Installed Libraries: libhwy.so, libhwy_contrib.so, and libhwy_test.so
Installed Directories: /usr/include/hwy and /usr/lib/cmake/hwy

Short Descriptions

libhwy.so

contains functions that provide portable SIMD/vector intrinsics

libhwy_contrib.so

contains several additions to Highway, including a series of dot product, image, math, and sort routines

libhwy_test.so

contains test helpers for Highway