From 3f95c76d053dda852d35b0faae0e4a80bb275320 Mon Sep 17 00:00:00 2001 From: Dmitry Baryshkov Date: Mon, 6 Oct 2025 14:08:07 +0300 Subject: [PATCH] opencl-benchmark: package NVIDIA OpenCL benchmark Add recipe to build a small OpenCL benchmark program to measure peak GPU/CPU performance. Signed-off-by: Dmitry Baryshkov Signed-off-by: Khem Raj --- .../opencl-benchmark/opencl-benchmark_1.9.bb | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 meta-oe/recipes-core/opencl-benchmark/opencl-benchmark_1.9.bb diff --git a/meta-oe/recipes-core/opencl-benchmark/opencl-benchmark_1.9.bb b/meta-oe/recipes-core/opencl-benchmark/opencl-benchmark_1.9.bb new file mode 100644 index 0000000000..e0a9f33241 --- /dev/null +++ b/meta-oe/recipes-core/opencl-benchmark/opencl-benchmark_1.9.bb @@ -0,0 +1,27 @@ +SUMMARY = "a small OpenCL benchmark program to measure peak GPU/CPU performance" +DESCRIPTION = "A small program, allowing to benchmark OpenCL performans using GPU or CPU drivers." +HOMEPAGE = "https://github.com/ProjectPhysX/OpenCL-Benchmark" + +SRC_URI = "git://github.com/ProjectPhysX/OpenCL-Benchmark;protocol=https;branch=master;tag=v${PV}" +SRCREV = "3b669592e21e1deaa025b83953d85e41545dd949" + +LICENSE = "BSD-3-Clause" +LIC_FILES_CHKSUM = "file://LICENSE.md;md5=f7884ffa0d4385c62b5d649de8c4c8da" + +inherit features_check + +REQUIRED_DISTRO_FEATURES = "opencl" + +DEPENDS = "opencl-clhpp virtual/libopencl1" + +# There is no Makefile, duplicate what make.sh is doing, while also enabling OE +# build flags and building and linking against normal CL headers / lib +do_compile() { + ${CXX} ${CPPFLAGS} ${CXXFLAGS} ${LDFLAGS} -std=c++17 -pthread \ + ${S}/src/*.cpp -o ${B}/OpenCL-Benchmark -lOpenCL +} + +do_install() { + install -d ${D}${bindir} + install -m 0755 ${B}/OpenCL-Benchmark ${D}${bindir} +}