1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00

benchmarks/vkoverhead: add new port

vkoverhead is a tool for evaluating CPU-based overhead of Vulkan
drivers. It was inspired heavily by drawoverhead from piglit.

 ## Features
* extreme granularity for profiling specific scenarios
* simple to use
* CSV output for ease of script parsing
* zero dependencies

https://github.com/zmike/vkoverhead
This commit is contained in:
Jan Beich 2023-02-01 16:26:31 +00:00
parent 61cd632613
commit fba6c610d3
4 changed files with 47 additions and 0 deletions

View File

@ -113,6 +113,7 @@
SUBDIR += uperf
SUBDIR += vegeta
SUBDIR += vkmark
SUBDIR += vkoverhead
SUBDIR += vkpeak
SUBDIR += webbench
SUBDIR += wrk

View File

@ -0,0 +1,31 @@
PORTNAME= vkoverhead
DISTVERSIONPREFIX= v
DISTVERSION= 1.2
CATEGORIES= benchmarks
PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
PATCHFILES+= 1a37beb59ac8.patch:-p1 # https://github.com/zmike/vkoverhead/pull/18
PATCHFILES+= 62c8ad1a795f.patch:-p1 # https://github.com/zmike/vkoverhead/pull/12
MAINTAINER= jbeich@FreeBSD.org
COMMENT= Evaluate CPU overhead of Vulkan drivers
WWW= https://github.com/zmike/vkoverhead
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
BROKEN_i386= fails to build due -Werror=int-conversion
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mako>0:textproc/py-mako@${PY_FLAVOR}
RUN_DEPENDS= vulkan-loader>0:graphics/vulkan-loader
USES= compiler:c11 meson pkgconfig python:build
USE_GITHUB= yes
GH_ACCOUNT= zmike
PLIST_FILES= bin/${PORTNAME}
post-patch:
# Derive Python version from Meson
@${REINPLACE_CMD} -e "s,'python3',," ${WRKSRC}/meson.build
.include <bsd.port.mk>

View File

@ -0,0 +1,7 @@
TIMESTAMP = 1675268791
SHA256 (zmike-vkoverhead-v1.2_GH0.tar.gz) = 9b105cb218b66f26552a9055a70fe20ff239b891762f650a19d78bfe24ab0d22
SIZE (zmike-vkoverhead-v1.2_GH0.tar.gz) = 999054
SHA256 (1a37beb59ac8.patch) = 0f4d99cb62a64e9d6fce26eb49289e343dc7f8f1e9235bcbe546e19e4280742a
SIZE (1a37beb59ac8.patch) = 710
SHA256 (62c8ad1a795f.patch) = 7ca952381d658bb73eb8ab9fcc0bcff4d58aa37e3f6583a7fd46eec9ca7db8d6
SIZE (62c8ad1a795f.patch) = 648

View File

@ -0,0 +1,8 @@
vkoverhead is a tool for evaluating CPU-based overhead of Vulkan
drivers. It was inspired heavily by drawoverhead from piglit.
## Features
* extreme granularity for profiling specific scenarios
* simple to use
* CSV output for ease of script parsing
* zero dependencies