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 87500A0352; Thu, 16 Jan 2020 06:26:00 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E4A6F1C06B; Thu, 16 Jan 2020 06:25:49 +0100 (CET) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 6CE5B1BFF9 for ; Thu, 16 Jan 2020 06:25:48 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 15 Jan 2020 21:25:48 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,325,1574150400"; d="scan'208";a="218402409" Received: from dpdk-moyufen06.sh.intel.com ([10.67.116.222]) by orsmga008.jf.intel.com with ESMTP; 15 Jan 2020 21:25:47 -0800 From: yufengmx To: dts@dpdk.org, lijuan.tu@intel.com Cc: yufengmx Date: Thu, 16 Jan 2020 13:28:13 +0800 Message-Id: <20200116052820.21902-7-yufengx.mo@intel.com> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20200116052820.21902-1-yufengx.mo@intel.com> References: <20200116052820.21902-1-yufengx.mo@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH V3 6/13] conf/l3fwd_lpm_ipv6: suite testing configuration X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" add l3fwd_lpm_ipv6 suite testing configuration. Signed-off-by: yufengmx --- conf/l3fwd_lpm_ipv6.cfg | 105 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 conf/l3fwd_lpm_ipv6.cfg diff --git a/conf/l3fwd_lpm_ipv6.cfg b/conf/l3fwd_lpm_ipv6.cfg new file mode 100644 index 0000000..200ddcd --- /dev/null +++ b/conf/l3fwd_lpm_ipv6.cfg @@ -0,0 +1,105 @@ +# Throughput numbers vary in different environment. +# Users could change these configuration on demand: +# +# - test_parameters defines the combination of frame size and descriptor +# numbers, and the pattern is +# { +# 'Numbers of Cores/Sockets/Queues #1': ['frame_size #1', 'frame_size #2',...], +# 'Numbers of Cores/Sockets/Queues #2': ['frame_size #1', 'frame_size #2',...], +# ...... +# } +# +# - test_duration is how many seconds each combination performance will +# be recorded, default is 60s +# +# - accepted_tolerance defines the accepted tolerance between test +# results and expected numbers, unit is percentage, (actual number - expected number)/expected number/100 +# +# - expected_throughput is a dictionary defining expected throughput +# numbers based on NIC, and the pattern is +# { +# 'columbiaville_100g': +# { +# 'Numbers of Cores/Sockets/Queues #1': +# { +# 'frame_size #1': 'expected number', +# 'frame_size #2': 'expected number', +# ... +# }, +# 'Numbers of Cores/Sockets/Queues #2': +# { +# 'frame_size #1': 'expected number', +# 'frame_size #2': 'expected number', +# ... +# }, +# } +# ...... +# } +# Every user should fill it out with your actual numbers. To keep the +# expected throughput private, dts takes 0.00 as default. +# +#==========this feature supported is P4.====================== +# - if update_expected == Ture, and add argument "--update-expected" in +# bash command, all objects in this file will changed after the run +# for example: ./dts --update-expected +# Highlights: +# At the begining, please change test_parameters according to your +# requirements, then run ./dts --update-expected to get the absolute +# results which will replace the default numbers 0.00 in this configuration. +# So you will have your own private configuration, and could start your +# tests as ususal. + +[suite] +update_expected = True + +test_duration = 60 +accepted_tolerance = 1 +test_parameters = { + '1C/1T/1Q': ['64', '128', '256', '512', '1024', '1280', '1518',], + '1C/2T/2Q': ['64', '128', '256', '512', '1024', '1280', '1518',], + '2C/2T/2Q': ['64', '128', '256', '512', '1024', '1280', '1518',], + '2C/4T/4Q': ['64', '128', '256', '512', '1024', '1280', '1518',], + '4C/4T/4Q': ['64', '128', '256', '512', '1024', '1280', '1518',],} +expected_throughput = { + 'test_perf_throughput_ipv6_lpm': { + 'niantic': { + '1C/1T/1Q': { + '64': '0.00', + '128': '0.00', + '256': '0.00', + '512': '0.00', + '1024': '0.00', + '1280': '0.00', + '1518': '0.00', }, + '1C/2T/2Q': { + '64': '0.00', + '128': '0.00', + '256': '0.00', + '512': '0.00', + '1024': '0.00', + '1280': '0.00', + '1518': '0.00', }, + '2C/2T/2Q': { + '64': '0.00', + '128': '0.00', + '256': '0.00', + '512': '0.00', + '1024': '0.00', + '1280': '0.00', + '1518': '0.00', }, + '2C/4T/4Q': { + '64': '0.00', + '128': '0.00', + '256': '0.00', + '512': '0.00', + '1024': '0.00', + '1280': '0.00', + '1518': '0.00', }, + '4C/4T/4Q': { + '64': '0.00', + '128': '0.00', + '256': '0.00', + '512': '0.00', + '1024': '0.00', + '1280': '0.00', + '1518': '0.00', },},}, } \ No newline at end of file -- 2.21.0