mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
tinymembench: add initial recipe
Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
parent
6abfe21a2a
commit
ca5d383441
19
meta-oe/recipes-benchmark/tinymembench/tinymembench_git.bb
Normal file
19
meta-oe/recipes-benchmark/tinymembench/tinymembench_git.bb
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
DESCRIPTION = "A simple memory benchmark program, which tries to measure the \
|
||||
peak bandwidth of sequential memory accesses and the latency of random memory \
|
||||
accesses. Bandwidth is measured by running different assembly code for the \
|
||||
aligned memory blocks and attempting different prefetch strategies"
|
||||
HOMEPAGE = "https://github.com/ssvb/tinymembench/wiki"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://main.c;endline=22;md5=879b9bbb60851454885b5fa47eb6b345"
|
||||
|
||||
PV = "0.3.9+git${SRCPV}"
|
||||
|
||||
SRCREV = "95e68477588d41187b2d2e52ecf6be0e7eb06b8d"
|
||||
SRC_URI = "git://github.com/ssvb/tinymembench.git"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${bindir}
|
||||
install -m755 tinymembench ${D}${bindir}/
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user