svn commit: r472007 - in head/benchmarks: . perftest

Philip Paeps philip at FreeBSD.org
Fri Jun 8 14:51:48 UTC 2018


Author: philip
Date: Fri Jun  8 14:51:46 2018
New Revision: 472007
URL: https://svnweb.freebsd.org/changeset/ports/472007

Log:
  Add perftest 4.2.0.7, collection of tests for RDMA micro-benchmark.
  
  Note that these tests will only work on systems with OFED support
  (make buildworld WITH_OFED=).
  
  PR:		228591
  Submitted by:	Slava Shwartsman <slavash at FreeBSD.org>
  Reviewed by:	bapt

Added:
  head/benchmarks/perftest/
  head/benchmarks/perftest/Makefile   (contents, props changed)
  head/benchmarks/perftest/distinfo   (contents, props changed)
  head/benchmarks/perftest/pkg-descr   (contents, props changed)
  head/benchmarks/perftest/pkg-plist   (contents, props changed)
Modified:
  head/benchmarks/Makefile

Modified: head/benchmarks/Makefile
==============================================================================
--- head/benchmarks/Makefile	Fri Jun  8 14:43:44 2018	(r472006)
+++ head/benchmarks/Makefile	Fri Jun  8 14:51:46 2018	(r472007)
@@ -55,6 +55,7 @@
     SUBDIR += pathload
     SUBDIR += pathrate
     SUBDIR += pear-Benchmark
+    SUBDIR += perftest
     SUBDIR += phoronix-test-suite
     SUBDIR += pipebench
     SUBDIR += polygraph

Added: head/benchmarks/perftest/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/benchmarks/perftest/Makefile	Fri Jun  8 14:51:46 2018	(r472007)
@@ -0,0 +1,26 @@
+# Created by: Slava Shwartsman <slavash at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	perftest
+DISTVERSION=	4.2-0.7
+CATEGORIES=	benchmarks
+
+MAINTAINER=	slavash at FreeBSD.org
+COMMENT=	Collection of tests for RDMA micro-benchmark
+
+LICENSE=	LGPL21 BSD2CLAUSE
+LICENSE_COMB=	dual
+
+.if !exists(/usr/lib/libibverbs.so)
+IGNORE=		missing OFED user space
+.endif
+
+USES=		autoreconf libtool
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	linux-rdma
+GH_TAGNAME=	V4.2-0.7
+
+GNU_CONFIGURE=yes
+
+.include <bsd.port.mk>

Added: head/benchmarks/perftest/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/benchmarks/perftest/distinfo	Fri Jun  8 14:51:46 2018	(r472007)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1526476189
+SHA256 (linux-rdma-perftest-4.2-0.7-V4.2-0.7_GH0.tar.gz) = c376e7232508fad50f34845a364a23400bd542140388702ba28748cc4496bce5
+SIZE (linux-rdma-perftest-4.2-0.7-V4.2-0.7_GH0.tar.gz) = 139384

Added: head/benchmarks/perftest/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/benchmarks/perftest/pkg-descr	Fri Jun  8 14:51:46 2018	(r472007)
@@ -0,0 +1,14 @@
+This is a collection of tests written over uverbs intended for use as a
+performance micro-benchmark. The tests may be used for HW or SW tuning
+as well as for functional testing.
+
+The collection contains a set of bandwidth and latency benchmark such as:
+
+	* Send        - ib_send_bw and ib_send_lat
+	* RDMA Read   - ib_read_bw and ib_read_lat
+	* RDMA Write  - ib_write_bw and ib_wriet_lat
+	* RDMA Atomic - ib_atomic_bw and ib_atomic_lat
+	* Native Ethernet (when working with MOFED2) - 
+                        raw_ethernet_bw, raw_ethernet_lat 
+
+WWW: https://github.com/linux-rdma/perftest/

Added: head/benchmarks/perftest/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/benchmarks/perftest/pkg-plist	Fri Jun  8 14:51:46 2018	(r472007)
@@ -0,0 +1,14 @@
+bin/ib_send_bw
+bin/ib_send_lat
+bin/ib_write_lat
+bin/ib_write_bw
+bin/ib_read_lat
+bin/ib_read_bw
+bin/ib_atomic_lat
+bin/ib_atomic_bw
+bin/raw_ethernet_bw
+bin/raw_ethernet_lat
+bin/raw_ethernet_burst_lat
+bin/raw_ethernet_fs_rate
+bin/run_perftest_loopback
+bin/run_perftest_multi_devices


More information about the svn-ports-all mailing list