DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 1/1] fix the number of operations in libcrypto test
@ 2016-10-10  8:07 Marcin Kerlin
  2016-10-11  0:27 ` De Lara Guarch, Pablo
  0 siblings, 1 reply; 3+ messages in thread
From: Marcin Kerlin @ 2016-10-10  8:07 UTC (permalink / raw)
  To: dev; +Cc: pablo.de.lara.guarch, michalx.k.jastrzebski, Marcin Kerlin

This patch reduce the number of total operations from 1M to 10K, because
test is taking too long time now.

Fixes: ffbe3be0d4b5 ("app/test: add libcrypto")

Signed-off-by: Marcin Kerlin <marcinx.kerlin@intel.com>
---
 app/test/test_cryptodev_perf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/test/test_cryptodev_perf.c b/app/test/test_cryptodev_perf.c
index 4aee9af..43a7166 100644
--- a/app/test/test_cryptodev_perf.c
+++ b/app/test/test_cryptodev_perf.c
@@ -3420,7 +3420,7 @@ test_perf_snow3G_vary_pkt_size(void)
 static int
 test_perf_libcrypto_vary_pkt_size(void)
 {
-	unsigned int total_operations = 1000000;
+	unsigned int total_operations = 10000;
 	unsigned int burst_size = { 64 };
 	unsigned int buf_lengths[] = { 64, 128, 256, 512, 768, 1024, 1280, 1536,
 			1792, 2048 };
-- 
1.9.1

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

* Re: [dpdk-dev] [PATCH 1/1] fix the number of operations in libcrypto test
  2016-10-10  8:07 [dpdk-dev] [PATCH 1/1] fix the number of operations in libcrypto test Marcin Kerlin
@ 2016-10-11  0:27 ` De Lara Guarch, Pablo
  2016-10-11  0:38   ` De Lara Guarch, Pablo
  0 siblings, 1 reply; 3+ messages in thread
From: De Lara Guarch, Pablo @ 2016-10-11  0:27 UTC (permalink / raw)
  To: Kerlin, MarcinX, dev; +Cc: Jastrzebski, MichalX K



> -----Original Message-----
> From: Kerlin, MarcinX
> Sent: Monday, October 10, 2016 1:08 AM
> To: dev@dpdk.org
> Cc: De Lara Guarch, Pablo; Jastrzebski, MichalX K; Kerlin, MarcinX
> Subject: [PATCH 1/1] fix the number of operations in libcrypto test
> 
> This patch reduce the number of total operations from 1M to 10K, because
> test is taking too long time now.
> 
> Fixes: ffbe3be0d4b5 ("app/test: add libcrypto")
> 
> Signed-off-by: Marcin Kerlin <marcinx.kerlin@intel.com>
> ---
>  app/test/test_cryptodev_perf.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/app/test/test_cryptodev_perf.c b/app/test/test_cryptodev_perf.c
> index 4aee9af..43a7166 100644
> --- a/app/test/test_cryptodev_perf.c
> +++ b/app/test/test_cryptodev_perf.c
> @@ -3420,7 +3420,7 @@ test_perf_snow3G_vary_pkt_size(void)
>  static int
>  test_perf_libcrypto_vary_pkt_size(void)
>  {
> -	unsigned int total_operations = 1000000;
> +	unsigned int total_operations = 10000;
>  	unsigned int burst_size = { 64 };
>  	unsigned int buf_lengths[] = { 64, 128, 256, 512, 768, 1024, 1280,
> 1536,
>  			1792, 2048 };
> --
> 1.9.1

Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>

Will change the title, as it is missing the category (app/test: )

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

* Re: [dpdk-dev] [PATCH 1/1] fix the number of operations in libcrypto test
  2016-10-11  0:27 ` De Lara Guarch, Pablo
@ 2016-10-11  0:38   ` De Lara Guarch, Pablo
  0 siblings, 0 replies; 3+ messages in thread
From: De Lara Guarch, Pablo @ 2016-10-11  0:38 UTC (permalink / raw)
  To: De Lara Guarch, Pablo, Kerlin, MarcinX, dev; +Cc: Jastrzebski, MichalX K



> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of De Lara Guarch,
> Pablo
> Sent: Monday, October 10, 2016 5:27 PM
> To: Kerlin, MarcinX; dev@dpdk.org
> Cc: Jastrzebski, MichalX K
> Subject: Re: [dpdk-dev] [PATCH 1/1] fix the number of operations in libcrypto
> test
> 
> 
> 
> > -----Original Message-----
> > From: Kerlin, MarcinX
> > Sent: Monday, October 10, 2016 1:08 AM
> > To: dev@dpdk.org
> > Cc: De Lara Guarch, Pablo; Jastrzebski, MichalX K; Kerlin, MarcinX
> > Subject: [PATCH 1/1] fix the number of operations in libcrypto test
> >
> > This patch reduce the number of total operations from 1M to 10K, because
> > test is taking too long time now.
> >
> > Fixes: ffbe3be0d4b5 ("app/test: add libcrypto")
> >
> > Signed-off-by: Marcin Kerlin <marcinx.kerlin@intel.com>
> > ---
> >  app/test/test_cryptodev_perf.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/app/test/test_cryptodev_perf.c
> b/app/test/test_cryptodev_perf.c
> > index 4aee9af..43a7166 100644
> > --- a/app/test/test_cryptodev_perf.c
> > +++ b/app/test/test_cryptodev_perf.c
> > @@ -3420,7 +3420,7 @@ test_perf_snow3G_vary_pkt_size(void)
> >  static int
> >  test_perf_libcrypto_vary_pkt_size(void)
> >  {
> > -	unsigned int total_operations = 1000000;
> > +	unsigned int total_operations = 10000;
> >  	unsigned int burst_size = { 64 };
> >  	unsigned int buf_lengths[] = { 64, 128, 256, 512, 768, 1024, 1280,
> > 1536,
> >  			1792, 2048 };
> > --
> > 1.9.1
> 
> Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
> 
> Will change the title, as it is missing the category (app/test: )

Applied to dpdk-next-crypto.
Thanks,

Pablo

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

end of thread, other threads:[~2016-10-11  0:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-10  8:07 [dpdk-dev] [PATCH 1/1] fix the number of operations in libcrypto test Marcin Kerlin
2016-10-11  0:27 ` De Lara Guarch, Pablo
2016-10-11  0:38   ` De Lara Guarch, Pablo

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).