diff options
| author | Ashwin Prabhakar <ashwin.prabhakar@qti.qualcomm.com> | 2026-06-02 11:43:13 +0200 |
|---|---|---|
| committer | Khem Raj <khem.raj@oss.qualcomm.com> | 2026-06-14 23:07:49 -0700 |
| commit | 6d5577066c4747e28974fc5a6671762966a6f8cb (patch) | |
| tree | 23076c60ef666bd5d8054a5f048b2c339e83c06e /meta-oe/recipes-benchmark/ramspeed/ramspeed_git.bb | |
| parent | c3e430ec85022244d2f67ccd5e473bf6abd21f2c (diff) | |
| download | meta-openembedded-6d5577066c4747e28974fc5a6671762966a6f8cb.tar.gz | |
ramspeed: Add recipe for cache and memory benchmarking tool
Add a new recipe for ramspeed, a lightweight benchmark utility
that measures cache and memory bandwidth using a set of synthetic
tests.
Signed-off-by: Ashwin Prabhakar <ashwin.prabhakar@qti.qualcomm.com>
ramspeed: Add recipe for cache and memory benchmarking tool
Add a new recipe for ramspeed, a lightweight benchmark utility
that measures cache and memory bandwidth using a set of synthetic
tests.
Signed-off-by: Ashwin Prabhakar <ashwin.prabhakar@qti.qualcomm.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-oe/recipes-benchmark/ramspeed/ramspeed_git.bb')
| -rw-r--r-- | meta-oe/recipes-benchmark/ramspeed/ramspeed_git.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-oe/recipes-benchmark/ramspeed/ramspeed_git.bb b/meta-oe/recipes-benchmark/ramspeed/ramspeed_git.bb new file mode 100644 index 0000000000..db5e16d8f6 --- /dev/null +++ b/meta-oe/recipes-benchmark/ramspeed/ramspeed_git.bb | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | SUMMARY = "Cache and memory benchmarking tool" | ||
| 2 | DESCRIPTION = "RAMspeed is a micro-benchmark for measuring cache and memory bandwidth" | ||
| 3 | HOMEPAGE = "https://github.com/cruvolo/ramspeed" | ||
| 4 | |||
| 5 | LICENSE = "Alasir" | ||
| 6 | LIC_FILES_CHKSUM = "file://LICENCE;md5=92cffec6695a20eab8d0e4770f4e9353" | ||
| 7 | LICENSE_FLAGS = "commercial" | ||
| 8 | |||
| 9 | SRC_URI = "git://github.com/cruvolo/ramspeed.git;protocol=https;branch=master" | ||
| 10 | SRCREV = "f3a766dc4f89cee97b5283d5c6bdf8b8e3474813" | ||
| 11 | |||
| 12 | do_compile() { | ||
| 13 | ${CC} ${CFLAGS} ${LDFLAGS} \ | ||
| 14 | ramspeed.c intmem.c fltmem.c intmark.c fltmark.c \ | ||
| 15 | -o ramspeed | ||
| 16 | } | ||
| 17 | |||
| 18 | do_install() { | ||
| 19 | install -d ${D}${bindir} | ||
| 20 | install -m 0755 ramspeed ${D}${bindir}/ | ||
| 21 | } | ||
