* [dts][PATCH V1] tests/pvp_multi_paths_*: modify pktgen options parameter
@ 2023-03-21 2:45 Wei Ling
2023-03-28 1:15 ` lijuan.tu
0 siblings, 1 reply; 2+ messages in thread
From: Wei Ling @ 2023-03-21 2:45 UTC (permalink / raw)
To: dts; +Cc: Wei Ling
Modify pktgen options parameter `trans_options = {"delay": 5, "duration": 30}`
to get stable throughput value.
Signed-off-by: Wei Ling <weix.ling@intel.com>
---
tests/TestSuite_pvp_multi_paths_performance.py | 5 ++++-
...estSuite_pvp_multi_paths_vhost_single_core_performance.py | 5 ++++-
...stSuite_pvp_multi_paths_virtio_single_core_performance.py | 4 ++--
3 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/tests/TestSuite_pvp_multi_paths_performance.py b/tests/TestSuite_pvp_multi_paths_performance.py
index 99bfbf1f..6f80cb84 100644
--- a/tests/TestSuite_pvp_multi_paths_performance.py
+++ b/tests/TestSuite_pvp_multi_paths_performance.py
@@ -104,7 +104,10 @@ class TestPVPMultiPathPerformance(TestCase):
streams = self.pktgen_helper.prepare_stream_from_tginput(
tgen_input, 100, None, self.tester.pktgen
)
- _, pps = self.tester.pktgen.measure_throughput(stream_ids=streams)
+ trans_options = {"delay": 5, "duration": 30}
+ _, pps = self.tester.pktgen.measure_throughput(
+ stream_ids=streams, options=trans_options
+ )
Mpps = pps / 1000000.0
self.throughput[frame_size][self.nb_desc] = Mpps
linerate = (
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 b3bcc4cb..c0f56ad2 100644
--- a/tests/TestSuite_pvp_multi_paths_vhost_single_core_performance.py
+++ b/tests/TestSuite_pvp_multi_paths_vhost_single_core_performance.py
@@ -103,7 +103,10 @@ class TestPVPMultiPathVhostPerformance(TestCase):
streams = self.pktgen_helper.prepare_stream_from_tginput(
tgen_input, 100, None, self.tester.pktgen
)
- _, pps = self.tester.pktgen.measure_throughput(stream_ids=streams)
+ trans_options = {"delay": 5, "duration": 30}
+ _, pps = self.tester.pktgen.measure_throughput(
+ stream_ids=streams, options=trans_options
+ )
Mpps = pps / 1000000.0
linerate = (
Mpps
diff --git a/tests/TestSuite_pvp_multi_paths_virtio_single_core_performance.py b/tests/TestSuite_pvp_multi_paths_virtio_single_core_performance.py
index 6972f569..f0c53336 100644
--- a/tests/TestSuite_pvp_multi_paths_virtio_single_core_performance.py
+++ b/tests/TestSuite_pvp_multi_paths_virtio_single_core_performance.py
@@ -105,9 +105,9 @@ class TestPVPMultiPathVirtioPerformance(TestCase):
tgen_input, 100, None, self.tester.pktgen
)
# set traffic option
- traffic_opt = {"delay": 5}
+ trans_options = {"delay": 5, "duration": 30}
_, pps = self.tester.pktgen.measure_throughput(
- stream_ids=streams, options=traffic_opt
+ stream_ids=streams, options=trans_options
)
Mpps = pps / 1000000.0
linerate = (
--
2.25.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* [dts][PATCH V1] tests/pvp_multi_paths_*: modify pktgen options parameter
2023-03-21 2:45 [dts][PATCH V1] tests/pvp_multi_paths_*: modify pktgen options parameter Wei Ling
@ 2023-03-28 1:15 ` lijuan.tu
0 siblings, 0 replies; 2+ messages in thread
From: lijuan.tu @ 2023-03-28 1:15 UTC (permalink / raw)
To: dts, Wei Ling; +Cc: Wei Ling
On Tue, 21 Mar 2023 10:45:05 +0800, Wei Ling <weix.ling@intel.com> wrote:
> Modify pktgen options parameter `trans_options = {"delay": 5, "duration": 30}`
> to get stable throughput value.
>
> Signed-off-by: Wei Ling <weix.ling@intel.com>
Applied, thanks
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-03-28 1:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-21 2:45 [dts][PATCH V1] tests/pvp_multi_paths_*: modify pktgen options parameter Wei Ling
2023-03-28 1:15 ` lijuan.tu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).