From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 63D6442870; Thu, 30 Mar 2023 10:50:24 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A6ED142B8C; Thu, 30 Mar 2023 10:50:23 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id C704840E25 for ; Thu, 30 Mar 2023 10:50:22 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1680166223; x=1711702223; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Eo24lBQ8qUNMU74aZ8jATiODqsYb1fzSBFwbDw5lSSg=; b=O/xpZqU09u0tjeaebyM/H7QjS7ugJa1PftY219k7Jv/+wGeKmHu/QWQU HmyXMGRKI/YHV3CRR8O5JMCRdDwDMt3ZsfWC2SK8CSGD/sjkT8qnc0PEX GJ0Iue+yFQEnamClDFTNR99mn8daDquJQKPmLEqvCPFWg41Vh0d1v35/f 5oiWRHX6fRUbwR+/VHAyDaITHsDGcUf+1q2L+GpPtysEey17k2/6ROiwn HfwfGQUhYyo+cSEQs5QADqbDibD99WkUacapEf7ittqY9pcaJQPRtO+If djsT8bHh6Nj8TZLSuQvZfK2cej9blyWX1mlFIa89uouJk3uwht1tPxWlb g==; X-IronPort-AV: E=McAfee;i="6600,9927,10664"; a="329603590" X-IronPort-AV: E=Sophos;i="5.98,303,1673942400"; d="scan'208";a="329603590" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Mar 2023 01:50:13 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10664"; a="661911670" X-IronPort-AV: E=Sophos;i="5.98,303,1673942400"; d="scan'208";a="661911670" Received: from dpdk-lijuan-icelake4.sh.intel.com ([10.67.119.190]) by orsmga006.jf.intel.com with ESMTP; 30 Mar 2023 01:50:12 -0700 From: Yingya Han To: dts@dpdk.org Cc: Yingya Han Subject: [dts][PATCH V1 3/3]conf: add i40e_multi_driver_perf configuration file Date: Thu, 30 Mar 2023 16:47:08 +0000 Message-Id: <20230330164708.8245-4-yingyax.han@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230330164708.8245-1-yingyax.han@intel.com> References: <20230330164708.8245-1-yingyax.han@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 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 Signed-off-by: Yingya Han --- conf/i40e_multi_driver_perf.cfg | 50 +++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 conf/i40e_multi_driver_perf.cfg diff --git a/conf/i40e_multi_driver_perf.cfg b/conf/i40e_multi_driver_perf.cfg new file mode 100644 index 00000000..0b862043 --- /dev/null +++ b/conf/i40e_multi_driver_perf.cfg @@ -0,0 +1,50 @@ +[suite] +test_duration = 30 +traffic_stop_wait_time = 2 +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", + ], +} -- 2.34.1