From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3741AA04B0; Sat, 24 Oct 2020 01:35:36 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5A6386CAA; Sat, 24 Oct 2020 01:34:14 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 6E7FA6883 for ; Sat, 24 Oct 2020 01:34:04 +0200 (CEST) IronPort-SDR: pl4N+Tl3wZQYkhovrHV6gS9Sa5H7RVx5mQmK5lJblg3DUMj9UYumhxqKFUZmBW2FSYc6J6luAz n91z09sD1K/g== X-IronPort-AV: E=McAfee;i="6000,8403,9783"; a="231935037" X-IronPort-AV: E=Sophos;i="5.77,410,1596524400"; d="scan'208";a="231935037" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Oct 2020 16:33:58 -0700 IronPort-SDR: kZbqgbxkM4jg0uocXhvx9kTUzZTHiAihoMs7t4Gw0Ac0+m9o+oNCDBT74fJzJsaeocBtFXhOOX uzKu1uDk66jw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,410,1596524400"; d="scan'208";a="524841058" Received: from skx-5gnr-sc12-4.sc.intel.com ([172.25.69.210]) by fmsmga005.fm.intel.com with ESMTP; 23 Oct 2020 16:33:58 -0700 From: Nicolas Chautru To: dev@dpdk.org, akhil.goyal@nxp.com, trix@redhat.com Cc: david.marchand@redhat.com, Nicolas Chautru Date: Fri, 23 Oct 2020 16:33:46 -0700 Message-Id: <1603496027-33918-7-git-send-email-nicolas.chautru@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1603496027-33918-1-git-send-email-nicolas.chautru@intel.com> References: <1603496027-33918-1-git-send-email-nicolas.chautru@intel.com> Subject: [dpdk-dev] [PATCH v4 6/7] app/bbdev: reduce duration of throughput test 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Reducing number of repetitions from 1000 to 100 to save time. Results are accurate enough with 100 loops. Signed-off-by: Nicolas Chautru Acked-by: Liu Tianjiao --- app/test-bbdev/test_bbdev_perf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test-bbdev/test_bbdev_perf.c b/app/test-bbdev/test_bbdev_perf.c index a15ea69..b5dc536 100644 --- a/app/test-bbdev/test_bbdev_perf.c +++ b/app/test-bbdev/test_bbdev_perf.c @@ -24,7 +24,7 @@ #define GET_SOCKET(socket_id) (((socket_id) == SOCKET_ID_ANY) ? 0 : (socket_id)) #define MAX_QUEUES RTE_MAX_LCORE -#define TEST_REPETITIONS 1000 +#define TEST_REPETITIONS 100 #define WAIT_OFFLOAD_US 1000 #ifdef RTE_LIBRTE_PMD_BBDEV_FPGA_LTE_FEC -- 1.8.3.1