From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 71DE75B40 for ; Sat, 29 Sep 2018 02:13:00 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 28 Sep 2018 17:12:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,317,1534834800"; d="scan'208";a="237017626" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga004.jf.intel.com with ESMTP; 28 Sep 2018 17:12:34 -0700 Received: from fmsmsx151.amr.corp.intel.com ([169.254.7.87]) by FMSMSX105.amr.corp.intel.com ([169.254.4.63]) with mapi id 14.03.0319.002; Fri, 28 Sep 2018 17:12:34 -0700 From: "Wang, Yipeng1" To: "Parthasarathy, JananeeX M" , "dev@dpdk.org" CC: "Richardson, Bruce" , "De Lara Guarch, Pablo" , "Pattan, Reshma" , "Somarowthu, Naga SureshX" , "Gobriel, Sameh" Thread-Topic: [dpdk-dev] [PATCH] test: reduce test time for hash multiwriter ut Thread-Index: AQHUVi1vVWgembDEIUGUVnsy2MKDhKUGZUxg Date: Sat, 29 Sep 2018 00:12:34 +0000 Message-ID: References: <1538030468-21942-1-git-send-email-jananeex.m.parthasarathy@intel.com> In-Reply-To: <1538030468-21942-1-git-send-email-jananeex.m.parthasarathy@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.400.15 dlp-reaction: no-action x-ctpclassification: CTP_NT x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiODY5MDc5NDEtM2NkYi00ZmQxLWE5ZTktODkzMTE5YWE3ZWYyIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoicUR1enpETVFUNEk3MytLcFRLc2MyeEt4M1hnOEpTbU1TcWxoKzMxQnphaTdiNDlaZkdMTVI0OXlmUGRBR1BQZSJ9 x-originating-ip: [10.1.200.106] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH] test: reduce test time for hash multiwriter ut X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2018 00:13:01 -0000 >-----Original Message----- >From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Jananee Parthasarathy >Sent: Wednesday, September 26, 2018 11:41 PM >To: dev@dpdk.org >Cc: Richardson, Bruce ; De Lara Guarch, Pablo = ; Pattan, Reshma >; Somarowthu, Naga SureshX >Subject: [dpdk-dev] [PATCH] test: reduce test time for hash multiwriter ut > >From: Naga Suresh Somarowthu > >Reduced test duration for hash_multiwriter_autotest. >Number of entries and total insertions are reduced >such that the duration is less than 10 seconds. > >Signed-off-by: Naga Suresh Somarowthu >--- > test/test/test_hash_multiwriter.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/test/test/test_hash_multiwriter.c b/test/test/test_hash_multi= writer.c >index 6a3eb10bd..04b7c18ff 100644 >--- a/test/test/test_hash_multiwriter.c >+++ b/test/test/test_hash_multiwriter.c >@@ -38,8 +38,8 @@ struct { > struct rte_hash *h; > } tbl_multiwriter_test_params; > >-const uint32_t nb_entries =3D 16*1024*1024; >-const uint32_t nb_total_tsx_insertion =3D 15*1024*1024; >+const uint32_t nb_entries =3D 5*1024*1024; >+const uint32_t nb_total_tsx_insertion =3D 4*1024*1024; [Wang, Yipeng] Maybe use 4.5*1024*1024 for nb_total_tsx_insertion to achieve 90% table uti= lization, which may exercise more core cases.