linux-rdma.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Add transactions per second to latency tests
@ 2016-07-07 16:06 Steve Wise
       [not found] ` <4257b3f1d2c22af577a5e584d2a34013342fb0ca.1467907759.git.root-Y+zAd6TciBxHOSu/evF7xUwdHq8NFSIN@public.gmane.org>
  0 siblings, 1 reply; 7+ messages in thread
From: Steve Wise @ 2016-07-07 16:06 UTC (permalink / raw)
  To: gilr-VPRAkNaXOzVWk0Htik3J/w; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

For duration (-D) latency tests, it is useful to have the average
transactions per second (tps) output.  So ib_*_lat now shows
average tps:

---------------------------------------------------------------------------------------
 #bytes        #iterations       t_avg[usec]    tps average
 2             1008430           2.97           168068.16
---------------------------------------------------------------------------------------

Signed-off-by: Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
---
 src/perftest_parameters.c | 5 +++--
 src/perftest_parameters.h | 4 ++--
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/perftest_parameters.c b/src/perftest_parameters.c
index 1cf4985..55d894b 100755
--- a/src/perftest_parameters.c
+++ b/src/perftest_parameters.c
@@ -2443,13 +2443,14 @@ void print_report_lat_duration (struct perftest_parameters *user_param)
 	int rtt_factor;
 	double cycles_to_units;
 	cycles_t test_sample_time;
-	double latency;
+	double latency, tps;
 
 	rtt_factor = (user_param->verb == READ || user_param->verb == ATOMIC) ? 1 : 2;
 	cycles_to_units = get_cpu_mhz(user_param->cpu_freq_f);
 
 	test_sample_time = (user_param->tcompleted[0] - user_param->tposted[0]);
 	latency = (((test_sample_time / cycles_to_units) / rtt_factor) / user_param->iters);
+	tps = user_param->iters / (test_sample_time / (cycles_to_units * 1000000));
 
 	if (user_param->output == OUTPUT_LAT) {
 		printf("%lf\n",latency);
@@ -2458,7 +2459,7 @@ void print_report_lat_duration (struct perftest_parameters *user_param)
 		printf(REPORT_FMT_LAT_DUR,
 				user_param->size,
 				user_param->iters,
-				latency);
+				latency, tps);
 		printf( user_param->cpu_util_data.enable ? REPORT_EXT_CPU_UTIL : REPORT_EXT , calc_cpu_util(user_param));
 	}
 }
diff --git a/src/perftest_parameters.h b/src/perftest_parameters.h
index 07c539c..7c1c871 100755
--- a/src/perftest_parameters.h
+++ b/src/perftest_parameters.h
@@ -180,7 +180,7 @@
 
 #define RESULT_FMT_LAT " #bytes #iterations    t_min[usec]    t_max[usec]  t_typical[usec]"
 
-#define RESULT_FMT_LAT_DUR " #bytes        #iterations       t_avg[usec]  	"
+#define RESULT_FMT_LAT_DUR " #bytes        #iterations       t_avg[usec]    tps average"
 
 #define RESULT_EXT "\n"
 
@@ -202,7 +202,7 @@
 /* Result print format for latency tests. */
 #define REPORT_FMT_LAT " %-7lu %d          %-7.2f        %-7.2f      %-7.2f"
 
-#define REPORT_FMT_LAT_DUR " %-7lu       %d            %-7.2f"
+#define REPORT_FMT_LAT_DUR " %-7lu       %d            %-7.2f        %-7.2f"
 
 #define CHECK_VALUE(arg,type,minv,maxv,name) 						    					\
 { arg = (type)strtol(optarg, NULL, 0); if ((arg < minv) || (arg > maxv))                \
-- 
2.7.0

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* RE: [PATCH] Add transactions per second to latency tests
       [not found] ` <4257b3f1d2c22af577a5e584d2a34013342fb0ca.1467907759.git.root-Y+zAd6TciBxHOSu/evF7xUwdHq8NFSIN@public.gmane.org>
@ 2016-07-07 16:12   ` Steve Wise
  2016-07-28 15:17     ` Steve Wise
  0 siblings, 1 reply; 7+ messages in thread
From: Steve Wise @ 2016-07-07 16:12 UTC (permalink / raw)
  To: gilr-VPRAkNaXOzVWk0Htik3J/w; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA


> Subject: [PATCH] Add transactions per second to latency tests
> 
> For duration (-D) latency tests, it is useful to have the average
> transactions per second (tps) output.  So ib_*_lat now shows
> average tps:
> 
>
--------------------------------------------------------------------------------
-------
>  #bytes        #iterations       t_avg[usec]    tps average
>  2             1008430           2.97           168068.16
>
--------------------------------------------------------------------------------
-------
> 
> Signed-off-by: Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>

I should have added "perftest" to the subject.  This is a patch to
git://git.openfabrics.org/~grockah/perftest.

Steve.

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: [PATCH] Add transactions per second to latency tests
  2016-07-07 16:12   ` Steve Wise
@ 2016-07-28 15:17     ` Steve Wise
  2016-08-15 15:51       ` Steve Wise
  0 siblings, 1 reply; 7+ messages in thread
From: Steve Wise @ 2016-07-28 15:17 UTC (permalink / raw)
  To: gilr-VPRAkNaXOzVWk0Htik3J/w; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

Hey Gil, will you merge this?

Thanks,

Steve.
 

> -----Original Message-----
> From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma-
> owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Steve Wise
> Sent: Thursday, July 07, 2016 11:12 AM
> To: gilr-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
> Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Subject: RE: [PATCH] Add transactions per second to latency tests
> 
> 
> > Subject: [PATCH] Add transactions per second to latency tests
> >
> > For duration (-D) latency tests, it is useful to have the average
> > transactions per second (tps) output.  So ib_*_lat now shows
> > average tps:
> >
> >
>
--------------------------------------------------------------------------------
> -------
> >  #bytes        #iterations       t_avg[usec]    tps average
> >  2             1008430           2.97           168068.16
> >
>
--------------------------------------------------------------------------------
> -------
> >
> > Signed-off-by: Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
> 
> I should have added "perftest" to the subject.  This is a patch to
> git://git.openfabrics.org/~grockah/perftest.
> 
> Steve.
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: [PATCH] Add transactions per second to latency tests
  2016-07-28 15:17     ` Steve Wise
@ 2016-08-15 15:51       ` Steve Wise
  2016-08-15 18:18         ` Leon Romanovsky
  2016-08-15 18:33         ` Mccormick, Patrick M
  0 siblings, 2 replies; 7+ messages in thread
From: Steve Wise @ 2016-08-15 15:51 UTC (permalink / raw)
  To: gilr-VPRAkNaXOzVWk0Htik3J/w
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, Leon Romanovsky

ping...

Does anyone still maintain the perftest repo?


> -----Original Message-----
> From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma-
> owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Steve Wise
> Sent: Thursday, July 28, 2016 10:18 AM
> To: gilr-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
> Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Subject: RE: [PATCH] Add transactions per second to latency tests
> 
> Hey Gil, will you merge this?
> 
> Thanks,
> 
> Steve.
> 
> 
> > -----Original Message-----
> > From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma-
> > owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Steve Wise
> > Sent: Thursday, July 07, 2016 11:12 AM
> > To: gilr-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
> > Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> > Subject: RE: [PATCH] Add transactions per second to latency tests
> >
> >
> > > Subject: [PATCH] Add transactions per second to latency tests
> > >
> > > For duration (-D) latency tests, it is useful to have the average
> > > transactions per second (tps) output.  So ib_*_lat now shows
> > > average tps:
> > >
> > >
> >
>
--------------------------------------------------------------------------------
> > -------
> > >  #bytes        #iterations       t_avg[usec]    tps average
> > >  2             1008430           2.97           168068.16
> > >
> >
>
--------------------------------------------------------------------------------
> > -------
> > >
> > > Signed-off-by: Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
> >
> > I should have added "perftest" to the subject.  This is a patch to
> > git://git.openfabrics.org/~grockah/perftest.
> >
> > Steve.
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> > the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Add transactions per second to latency tests
  2016-08-15 15:51       ` Steve Wise
@ 2016-08-15 18:18         ` Leon Romanovsky
  2016-08-15 18:33         ` Mccormick, Patrick M
  1 sibling, 0 replies; 7+ messages in thread
From: Leon Romanovsky @ 2016-08-15 18:18 UTC (permalink / raw)
  To: Steve Wise; +Cc: gilr-VPRAkNaXOzVWk0Htik3J/w, linux-rdma-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 2799 bytes --]

On Mon, Aug 15, 2016 at 10:51:40AM -0500, Steve Wise wrote:
> ping...

Thank you for reminding that.

> 
> Does anyone still maintain the perftest repo?

Sure,
I'll take it offline.

Thanks

> 
> 
> > -----Original Message-----
> > From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma-
> > owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Steve Wise
> > Sent: Thursday, July 28, 2016 10:18 AM
> > To: gilr-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
> > Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> > Subject: RE: [PATCH] Add transactions per second to latency tests
> > 
> > Hey Gil, will you merge this?
> > 
> > Thanks,
> > 
> > Steve.
> > 
> > 
> > > -----Original Message-----
> > > From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma-
> > > owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Steve Wise
> > > Sent: Thursday, July 07, 2016 11:12 AM
> > > To: gilr-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
> > > Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> > > Subject: RE: [PATCH] Add transactions per second to latency tests
> > >
> > >
> > > > Subject: [PATCH] Add transactions per second to latency tests
> > > >
> > > > For duration (-D) latency tests, it is useful to have the average
> > > > transactions per second (tps) output.  So ib_*_lat now shows
> > > > average tps:
> > > >
> > > >
> > >
> >
> --------------------------------------------------------------------------------
> > > -------
> > > >  #bytes        #iterations       t_avg[usec]    tps average
> > > >  2             1008430           2.97           168068.16
> > > >
> > >
> >
> --------------------------------------------------------------------------------
> > > -------
> > > >
> > > > Signed-off-by: Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
> > >
> > > I should have added "perftest" to the subject.  This is a patch to
> > > git://git.openfabrics.org/~grockah/perftest.
> > >
> > > Steve.
> > >
> > > --
> > > To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> > > the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> > > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > 
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> > the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: [PATCH] Add transactions per second to latency tests
  2016-08-15 15:51       ` Steve Wise
  2016-08-15 18:18         ` Leon Romanovsky
@ 2016-08-15 18:33         ` Mccormick, Patrick M
       [not found]           ` <856EA97E2D31FB4CB11D0FAEE9481E4BA8AF746C-P5GAC/sN6hkd3b2yrw5b5LfspsVTdybXVpNB7YpNyf8@public.gmane.org>
  1 sibling, 1 reply; 7+ messages in thread
From: Mccormick, Patrick M @ 2016-08-15 18:33 UTC (permalink / raw)
  To: Steve Wise, gilr-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Leon Romanovsky, idos-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org,
	Marciniszyn, Mike

I am also interested in knowing who is the current maintainer, CCing recent committers from:

git://flatbed.openfabrics.org/~mmarciniszyn/perftest/.git

Also: which git repo is the source for openfabrics OFED ?

I have a trivial patch I would like to get merged before the next ofed release also.

Patrick

> -----Original Message-----
> From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma-
> owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Steve Wise
> Sent: Monday, August 15, 2016 8:52 AM
> To: gilr-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
> Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org; Leon Romanovsky
> <leonro-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> Subject: RE: [PATCH] Add transactions per second to latency tests
> 
> ping...
> 
> Does anyone still maintain the perftest repo?
> 
> 
> > -----Original Message-----
> > From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma-
> > owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Steve Wise
> > Sent: Thursday, July 28, 2016 10:18 AM
> > To: gilr-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
> > Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> > Subject: RE: [PATCH] Add transactions per second to latency tests
> >
> > Hey Gil, will you merge this?
> >
> > Thanks,
> >
> > Steve.
> >
> >
> > > -----Original Message-----
> > > From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma-
> > > owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Steve Wise
> > > Sent: Thursday, July 07, 2016 11:12 AM
> > > To: gilr-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
> > > Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> > > Subject: RE: [PATCH] Add transactions per second to latency tests
> > >
> > >
> > > > Subject: [PATCH] Add transactions per second to latency tests
> > > >
> > > > For duration (-D) latency tests, it is useful to have the average
> > > > transactions per second (tps) output.  So ib_*_lat now shows
> > > > average tps:
> > > >
> > > >
> > >
> >
> --------------------------------------------------------------------------------
> > > -------
> > > >  #bytes        #iterations       t_avg[usec]    tps average
> > > >  2             1008430           2.97           168068.16
> > > >
> > >
> >
> --------------------------------------------------------------------------------
> > > -------
> > > >
> > > > Signed-off-by: Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
> > >
> > > I should have added "perftest" to the subject.  This is a patch to
> > > git://git.openfabrics.org/~grockah/perftest.
> > >
> > > Steve.
> > >
> > > --
> > > To unsubscribe from this list: send the line "unsubscribe
> > > linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> > > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-rdma"
> > in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More
> majordomo
> > info at  http://vger.kernel.org/majordomo-info.html
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the
> body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info
> at  http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: [PATCH] Add transactions per second to latency tests
       [not found]           ` <856EA97E2D31FB4CB11D0FAEE9481E4BA8AF746C-P5GAC/sN6hkd3b2yrw5b5LfspsVTdybXVpNB7YpNyf8@public.gmane.org>
@ 2016-08-15 21:13             ` RSD @ SFI
  0 siblings, 0 replies; 7+ messages in thread
From: RSD @ SFI @ 2016-08-15 21:13 UTC (permalink / raw)
  To: 'Mccormick, Patrick M', 'Steve Wise',
	gilr-VPRAkNaXOzVWk0Htik3J/w
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, 'Leon Romanovsky',
	idos-VPRAkNaXOzVWk0Htik3J/w, 'Marciniszyn, Mike'

The list of maintainers is available here:
http://www.openfabrics.org/downloads/MAINTAINERS 

-----Original Message-----
From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
[mailto:linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Mccormick, Patrick M
Sent: Monday, August 15, 2016 2:34 PM
To: Steve Wise; gilr-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org; Leon Romanovsky; idos-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org;
Marciniszyn, Mike
Subject: RE: [PATCH] Add transactions per second to latency tests

I am also interested in knowing who is the current maintainer, CCing recent
committers from:

git://flatbed.openfabrics.org/~mmarciniszyn/perftest/.git

Also: which git repo is the source for openfabrics OFED ?

I have a trivial patch I would like to get merged before the next ofed
release also.

Patrick

> -----Original Message-----
> From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma- 
> owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Steve Wise
> Sent: Monday, August 15, 2016 8:52 AM
> To: gilr-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
> Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org; Leon Romanovsky <leonro-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> Subject: RE: [PATCH] Add transactions per second to latency tests
> 
> ping...
> 
> Does anyone still maintain the perftest repo?
> 
> 
> > -----Original Message-----
> > From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma- 
> > owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Steve Wise
> > Sent: Thursday, July 28, 2016 10:18 AM
> > To: gilr-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
> > Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> > Subject: RE: [PATCH] Add transactions per second to latency tests
> >
> > Hey Gil, will you merge this?
> >
> > Thanks,
> >
> > Steve.
> >
> >
> > > -----Original Message-----
> > > From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma- 
> > > owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Steve Wise
> > > Sent: Thursday, July 07, 2016 11:12 AM
> > > To: gilr-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
> > > Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> > > Subject: RE: [PATCH] Add transactions per second to latency tests
> > >
> > >
> > > > Subject: [PATCH] Add transactions per second to latency tests
> > > >
> > > > For duration (-D) latency tests, it is useful to have the 
> > > > average transactions per second (tps) output.  So ib_*_lat now 
> > > > shows average tps:
> > > >
> > > >
> > >
> >
> ----------------------------------------------------------------------
> ----------
> > > -------
> > > >  #bytes        #iterations       t_avg[usec]    tps average
> > > >  2             1008430           2.97           168068.16
> > > >
> > >
> >
> ----------------------------------------------------------------------
> ----------
> > > -------
> > > >
> > > > Signed-off-by: Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
> > >
> > > I should have added "perftest" to the subject.  This is a patch to 
> > > git://git.openfabrics.org/~grockah/perftest.
> > >
> > > Steve.
> > >
> > > --
> > > To unsubscribe from this list: send the line "unsubscribe 
> > > linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org 
> > > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-rdma"
> > in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More
> majordomo
> > info at  http://vger.kernel.org/majordomo-info.html
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" 
> in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo 
> info at  http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the
body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at
http://vger.kernel.org/majordomo-info.html


--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2016-08-15 21:13 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-07 16:06 [PATCH] Add transactions per second to latency tests Steve Wise
     [not found] ` <4257b3f1d2c22af577a5e584d2a34013342fb0ca.1467907759.git.root-Y+zAd6TciBxHOSu/evF7xUwdHq8NFSIN@public.gmane.org>
2016-07-07 16:12   ` Steve Wise
2016-07-28 15:17     ` Steve Wise
2016-08-15 15:51       ` Steve Wise
2016-08-15 18:18         ` Leon Romanovsky
2016-08-15 18:33         ` Mccormick, Patrick M
     [not found]           ` <856EA97E2D31FB4CB11D0FAEE9481E4BA8AF746C-P5GAC/sN6hkd3b2yrw5b5LfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2016-08-15 21:13             ` RSD @ SFI

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).