package/highway: new package

Highway is a C++ library that provides portable SIMD/vector intrinsics.

https://github.com/google/highway

Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Julien Olivain
2022-11-24 23:05:51 +01:00
committed by Thomas Petazzoni
parent 89710c804e
commit 4733f9bd57
7 changed files with 174 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
import os
import infra.basetest
class TestHighway(infra.basetest.BRTest):
config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
"""
BR2_PACKAGE_HIGHWAY=y
BR2_PACKAGE_HIGHWAY_EXAMPLES=y
BR2_TARGET_ROOTFS_CPIO=y
# BR2_TARGET_ROOTFS_TAR is not set
"""
def test_run(self):
cpio_file = os.path.join(self.builddir, "images", "rootfs.cpio")
self.emulator.boot(arch="armv5",
kernel="builtin",
options=["-initrd", cpio_file])
self.emulator.login()
self.assertRunOk("hwy_benchmark", timeout=20)