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 40C53A00C5; Sun, 26 Apr 2020 06:38:13 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 343D81C010; Sun, 26 Apr 2020 06:38:13 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id D7BB61C00D for ; Sun, 26 Apr 2020 06:38:10 +0200 (CEST) IronPort-SDR: ZEUtLVkloKvV/eWrlGJMx1ZLYPLFR1DYuCJWQgZY1eyM3RLwwOo2FZvCwn33LCPNTg0i7k/vXJ AfWyEkLPm05A== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2020 21:38:09 -0700 IronPort-SDR: 7Sqp2WQbswekvZuZdTD/qC2xHxg3Qma4e1ZPVqzyY8RTy92xh2SPfBMO3yehWwIP2v1tjwENMQ WnkJmNvLRB+A== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,318,1583222400"; d="scan'208";a="457902908" Received: from dpdk-yinan-purley.sh.intel.com ([10.67.117.227]) by fmsmga005.fm.intel.com with ESMTP; 25 Apr 2020 21:38:08 -0700 From: Yinan To: dts@dpdk.org Cc: Wang Yinan Date: Sat, 25 Apr 2020 21:32:08 +0000 Message-Id: <20200425213208.114434-1-yinan.wang@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH v1] tests: add packed ring vectorized ring cases in TestSuite_pvp_multi_paths_vhost_single_core_performance.py 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" From: Wang Yinan Signed-off-by: Wang Yinan --- ...lti_paths_vhost_single_core_performance.py | 28 ++++++++++++++----- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/tests/TestSuite_pvp_multi_paths_vhost_single_core_performance.py b/tests/TestSuite_pvp_multi_paths_vhost_single_core_performance.py index 1da023e..c4d4081 100644 --- a/tests/TestSuite_pvp_multi_paths_vhost_single_core_performance.py +++ b/tests/TestSuite_pvp_multi_paths_vhost_single_core_performance.py @@ -114,7 +114,6 @@ class TestPVPMultiPathVhostPerformance(TestCase): self.dut_ports[0]) destination_mac = self.dut.get_mac_address( self.dut_ports[0]) - pkt = Packet(pkt_type='UDP', pkt_len=frame_size) pkt.config_layer('ether', {'dst': '%s' % destination_mac}) pkt.save_pcapfile(self.tester, "%s/multi_path.pcap" % (self.out_path)) @@ -122,15 +121,13 @@ class TestPVPMultiPathVhostPerformance(TestCase): self.tester.pktgen.clear_streams() streams = self.pktgen_helper.prepare_stream_from_tginput(tgen_input, 100, None, self.tester.pktgen) - traffic_opt = {'delay': 5} - _, pps = self.tester.pktgen.measure_throughput(stream_ids=streams, options=traffic_opt) + _, pps = self.tester.pktgen.measure_throughput(stream_ids=streams) Mpps = pps / 1000000.0 self.verify(Mpps > 0.0, "%s can not receive packets of frame size %d" % (self.running_case, frame_size)) linerate = Mpps * 100 / \ float(self.wirespeed(self.nic, frame_size, self.number_of_ports)) self.throughput[frame_size][self.nb_desc] = Mpps - results_row = [frame_size] results_row.append(case_info) results_row.append(Mpps) @@ -343,7 +340,24 @@ class TestPVPMultiPathVhostPerformance(TestCase): """ self.test_target = self.running_case self.expected_throughput = self.get_suite_cfg()['expected_throughput'][self.test_target] - virtio_pmd_arg = {"version": "in_order=1,packed_vq=1,mrg_rxbuf=0", + virtio_pmd_arg = {"version": "in_order=1,packed_vq=1,mrg_rxbuf=0,vectorized=1", + "path": "--rx-offloads=0x10 --enable-hw-vlan-strip --rss-ip"} + self.start_vhost_testpmd() + self.start_virtio_testpmd(virtio_pmd_arg) + self.send_and_verify("virtio_1.1 inorder normal") + self.close_all_testpmd() + self.logger.info('result of all framesize result') + self.result_table_print() + self.handle_expected() + self.handle_results() + + def test_perf_vhost_single_core_virtio11_vectorized(self): + """ + performance for Vhost PVP virtio1.1 vectorized Path. + """ + self.test_target = self.running_case + self.expected_throughput = self.get_suite_cfg()['expected_throughput'][self.test_target] + virtio_pmd_arg = {"version": "in_order=1,packed_vq=1,mrg_rxbuf=0,vectorized=1", "path": "--tx-offloads=0x0 --enable-hw-vlan-strip --rss-ip"} self.start_vhost_testpmd() self.start_virtio_testpmd(virtio_pmd_arg) @@ -371,9 +385,9 @@ class TestPVPMultiPathVhostPerformance(TestCase): self.handle_expected() self.handle_results() - def test_perf_vhost_single_core_inorder_no_mergeable(self): + def test_perf_vhost_single_core_inorder_no_normal(self): """ - performance for Vhost PVP In_order no_mergeable Path. + performance for Vhost PVP In_order normal Path. """ self.test_target = self.running_case self.expected_throughput = self.get_suite_cfg()['expected_throughput'][self.test_target] -- 2.17.1