CSIT-518: Add testpmd numa awareness
[csit.git] / dpdk-tests / perf / 10ge2p1x520-eth-l2xcbase-testpmd-ndrdisc.robot
1 # Copyright (c) 2016 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 *** Settings ***
15 | Resource | resources/libraries/robot/performance.robot
16 | Resource | resources/libraries/robot/DPDK/default.robot
17 | Library | resources.libraries.python.topology.Topology
18 | Library | resources.libraries.python.NodePath
19 | Library | resources.libraries.python.InterfaceUtil
20 | Library | resources.libraries.python.DPDK.DPDKTools
21 | Force Tags | 3_NODE_SINGLE_LINK_TOPO | HW_ENV | PERFTEST | NDRPDRDISC | 1NUMA
22 | ... | NIC_Intel-X520-DA2 | DPDK | ETH | L2XCFWD | BASE
23 | Suite Setup | DPDK 3-node Performance Suite Setup with DUT's NIC model
24 | ... | L2 | Intel-X520-DA2
25 | Suite Teardown | DPDK 3-node Performance Suite Teardown
26 | Documentation | *RFC2544: Pkt throughput IPv4 routing test cases*
27 | ...
28 | ... | *[Top] Network Topologies:* TG-DUT1-DUT2-TG 3-node circular topology\
29 | ... | with single links between nodes.
30 | ... | *[Enc] Packet Encapsulations:* Eth-IPv4 for L2 frame forwarding.
31 | ... | *[Cfg] DUT configuration:* DUT1 and DUT2 run the DPDK testpmd\
32 | ... | application and use the io forwarding mode. DUT1 and DUT2 tested with\
33 | ... | 2p10GE NIC X520 Niantic by Intel.
34 | ... | *[Ver] TG verification:* TG finds and reports throughput NDR (Non Drop\
35 | ... | Rate) with zero packet loss tolerance or throughput PDR (Partial Drop\
36 | ... | Rate) with non-zero packet loss tolerance (LT) expressed in percentage\
37 | ... | of packets transmitted. NDR and PDR are discovered for different\
38 | ... | Ethernet L2 frame sizes using either binary search or linear search\
39 | ... | algorithms with configured starting rate and final step that determines\
40 | ... | throughput measurement resolution. Test packets are generated by TG on\
41 | ... | links to DUTs. TG traffic profile contains two L3 flow-groups\
42 | ... | (flow-group per direction, 253 flows per flow-group) with all packets\
43 | ... | containing Ethernet header, IPv4 header with IP protocol=61 and static\
44 | ... | payload. MAC addresses are matching MAC addresses of the TG node\
45 | ... | interfaces.
46 | ... | *[Ref] Applicable standard specifications:* RFC2544.
47
48 *** Variables ***
49 # X520-DA2 bandwidth limit
50 | ${s_limit} | ${10000000000}
51
52 *** Test Cases ***
53 | tc01-64B-1t1c-eth-l2xcbase-testpmd-ndrdisc
54 | | [Documentation]
55 | | ... | [Cfg] DUT runs L2 frame forwarding config with 1 thread, 1 phy core,\
56 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for 64 Byte frames\
57 | | ... | using binary search start at 10GE linerate, step 100kpps.
58 | | [Tags] | 1T1C | STHREAD | NDRDISC
59 | | ${framesize}= | Set Variable | ${64}
60 | | ${min_rate}= | Set Variable | ${100000}
61 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
62 | | ${binary_min}= | Set Variable | ${min_rate}
63 | | ${binary_max}= | Set Variable | ${max_rate}
64 | | ${threshold}= | Set Variable | ${min_rate}
65 | | Given Start L2FWD '1' worker threads and rxqueues '1' with jumbo frames 'no'
66 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
67 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
68 | | ... | ${threshold}
69
70 | tc02-64B-1t1c-eth-l2xcbase-testpmd-pdrdisc
71 | | [Documentation]
72 | | ... | [Cfg] DUT runs L2 frame forwarding config with 1 thread, 1 phy core,\
73 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for 64 Byte frames\
74 | | ... | using binary search start at 10GE linerate, step 100kpps, LT=0.5%.
75 | | [Tags] | 1T1C | STHREAD | PDRDISC | SKIP_PATCH
76 | | ${framesize}= | Set Variable | ${64}
77 | | ${min_rate}= | Set Variable | ${100000}
78 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
79 | | ${binary_min}= | Set Variable | ${min_rate}
80 | | ${binary_max}= | Set Variable | ${max_rate}
81 | | ${threshold}= | Set Variable | ${min_rate}
82 | | Given Start L2FWD '1' worker threads and rxqueues '1' with jumbo frames 'no'
83 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
84 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
85 | | ... | ${threshold} | ${glob_loss_acceptance} | ${glob_loss_acceptance_type}
86
87 | tc03-1518B-1t1c-eth-l2xcbase-testpmd-ndrdisc
88 | | [Documentation]
89 | | ... | [Cfg] DUT runs L2 frame forwarding config with 1 thread, 1 phy core,\
90 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for 1518 Byte frames\
91 | | ... | using binary search start at 10GE linerate, step 10kpps.
92 | | [Tags] | 1T1C | STHREAD | NDRDISC
93 | | ${framesize}= | Set Variable | ${1518}
94 | | ${min_rate}= | Set Variable | ${10000}
95 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
96 | | ${binary_min}= | Set Variable | ${min_rate}
97 | | ${binary_max}= | Set Variable | ${max_rate}
98 | | ${threshold}= | Set Variable | ${min_rate}
99 | | Given Start L2FWD '1' worker threads and rxqueues '1' with jumbo frames 'no'
100 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
101 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
102 | | ... | ${threshold}
103
104 | tc04-1518B-1t1c-eth-l2xcbase-testpmd-pdrdisc
105 | | [Documentation]
106 | | ... | [Cfg] DUT runs L2 frame forwarding config with 1 thread, 1 phy core,\
107 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for 1518 Byte frames\
108 | | ... | using binary search start at 10GE linerate, step 10kpps, LT=0.5%.
109 | | [Tags] | 1T1C | STHREAD | PDRDISC | SKIP_PATCH
110 | | ${framesize}= | Set Variable | ${1518}
111 | | ${min_rate}= | Set Variable | ${10000}
112 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
113 | | ${binary_min}= | Set Variable | ${min_rate}
114 | | ${binary_max}= | Set Variable | ${max_rate}
115 | | ${threshold}= | Set Variable | ${min_rate}
116 | | Given Start L2FWD '1' worker threads and rxqueues '1' with jumbo frames 'no'
117 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
118 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
119 | | ... | ${threshold} | ${glob_loss_acceptance} | ${glob_loss_acceptance_type}
120
121 | tc05-9000B-1t1c-eth-l2xcbase-testpmd-ndrdisc
122 | | [Documentation]
123 | | ... | [Cfg] DUT runs L2 frame forwarding config with 1 thread, 1 phy core,\
124 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for 9000 Byte frames\
125 | | ... | using binary search start at 10GE linerate, step 10kpps.
126 | | [Tags] | 1T1C | STHREAD | NDRDISC
127 | | ${framesize}= | Set Variable | ${9000}
128 | | ${min_rate}= | Set Variable | ${10000}
129 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
130 | | ${binary_min}= | Set Variable | ${min_rate}
131 | | ${binary_max}= | Set Variable | ${max_rate}
132 | | ${threshold}= | Set Variable | ${min_rate}
133 | | Given Start L2FWD '1' worker threads and rxqueues '1' with jumbo frames 'yes'
134 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
135 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
136 | | ... | ${threshold}
137
138 | tc06-9000B-1t1c-eth-l2xcbase-testpmd-pdrdisc
139 | | [Documentation]
140 | | ... | [Cfg] DUT runs L2 frame forwarding config with 1 thread, 1 phy core,\
141 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for 9000 Byte frames\
142 | | ... | using binary search start at 10GE linerate, step 10kpps, LT=0.5%.
143 | | [Tags] | 1T1C | STHREAD | PDRDISC | SKIP_PATCH
144 | | ${framesize}= | Set Variable | ${9000}
145 | | ${min_rate}= | Set Variable | ${10000}
146 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
147 | | ${binary_min}= | Set Variable | ${min_rate}
148 | | ${binary_max}= | Set Variable | ${max_rate}
149 | | ${threshold}= | Set Variable | ${min_rate}
150 | | Given Start L2FWD '1' worker threads and rxqueues '1' with jumbo frames 'yes'
151 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
152 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
153 | | ... | ${threshold} | ${glob_loss_acceptance} | ${glob_loss_acceptance_type}
154
155 | tc07-64B-2t2c-eth-l2xcbase-testpmd-ndrdisc
156 | | [Documentation]
157 | | ... | [Cfg] DUT runs L2 frame forwarding config with 2 threads, 2 phy\
158 | | ... | cores, 1 receive queue per NIC port. [Ver] Find NDR for 64 Byte\
159 | | ... | frames using binary search start at 10GE linerate, step 100kpps.
160 | | [Tags] | 2T2C | MTHREAD | NDRDISC
161 | | ${framesize}= | Set Variable | ${64}
162 | | ${min_rate}= | Set Variable | ${100000}
163 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
164 | | ${binary_min}= | Set Variable | ${min_rate}
165 | | ${binary_max}= | Set Variable | ${max_rate}
166 | | ${threshold}= | Set Variable | ${min_rate}
167 | | Given Start L2FWD '2' worker threads and rxqueues '1' with jumbo frames 'no'
168 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
169 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
170 | | ... | ${threshold}
171
172 | tc08-64B-2t2c-eth-l2xcbase-testpmd-pdrdisc
173 | | [Documentation]
174 | | ... | [Cfg] DUT runs L2 frame forwarding config with 2 threads, 2 phy\
175 | | ... | cores, 1 receive queue per NIC port. [Ver] Find PDR for 64 Byte\
176 | | ... | frames using binary search start at 10GE linerate, step 100kpps,\
177 | | ... | LT=0.5%.
178 | | [Tags] | 2T2C | MTHREAD | PDRDISC | SKIP_PATCH
179 | | ${framesize}= | Set Variable | ${64}
180 | | ${min_rate}= | Set Variable | ${100000}
181 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
182 | | ${binary_min}= | Set Variable | ${min_rate}
183 | | ${binary_max}= | Set Variable | ${max_rate}
184 | | ${threshold}= | Set Variable | ${min_rate}
185 | | Given Start L2FWD '2' worker threads and rxqueues '1' with jumbo frames 'no'
186 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
187 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
188 | | ... | ${threshold} | ${glob_loss_acceptance} | ${glob_loss_acceptance_type}
189
190 | tc09-1518B-2t2c-eth-l2xcbase-testpmd-ndrdisc
191 | | [Documentation]
192 | | ... | [Cfg] DUT runs L2 frame forwarding config with 2 threads, 2 phy\
193 | | ... | cores, 1 receive queue per NIC port. [Ver] Find NDR for 1518 Byte\
194 | | ... | frames using binary search start at 10GE linerate, step 10kpps.
195 | | [Tags] | 2T2C | MTHREAD | NDRDISC | SKIP_PATCH
196 | | ${framesize}= | Set Variable | ${1518}
197 | | ${min_rate}= | Set Variable | ${10000}
198 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
199 | | ${binary_min}= | Set Variable | ${min_rate}
200 | | ${binary_max}= | Set Variable | ${max_rate}
201 | | ${threshold}= | Set Variable | ${min_rate}
202 | | Given Start L2FWD '2' worker threads and rxqueues '1' with jumbo frames 'no'
203 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
204 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
205 | | ... | ${threshold}
206
207 | tc10-1518B-2t2c-eth-l2xcbase-testpmd-pdrdisc
208 | | [Documentation]
209 | | ... | [Cfg] DUT runs L2 frame forwarding config with 2 threads, 2 phy\
210 | | ... | cores, 1 receive queue per NIC port. [Ver] Find PDR for 1518 Byte\
211 | | ... | frames using binary search start at 10GE linerate, step 10kpps,\
212 | | ... | LT=0.5%.
213 | | [Tags] | 2T2C | MTHREAD | PDRDISC | SKIP_PATCH
214 | | ${framesize}= | Set Variable | ${1518}
215 | | ${min_rate}= | Set Variable | ${10000}
216 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
217 | | ${binary_min}= | Set Variable | ${min_rate}
218 | | ${binary_max}= | Set Variable | ${max_rate}
219 | | ${threshold}= | Set Variable | ${min_rate}
220 | | Given Start L2FWD '2' worker threads and rxqueues '1' with jumbo frames 'no'
221 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
222 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
223 | | ... | ${threshold} | ${glob_loss_acceptance} | ${glob_loss_acceptance_type}
224
225 | tc11-9000B-2t2c-eth-l2xcbase-testpmd-ndrdisc
226 | | [Documentation]
227 | | ... | [Cfg] DUT runs L2 frame forwarding config with 2 threads, 2 phy\
228 | | ... | cores, 1 receive queue per NIC port. [Ver] Find NDR for 9000 Byte\
229 | | ... | frames using binary search start at 10GE linerate, step 10kpps.
230 | | [Tags] | 2T2C | MTHREAD | NDRDISC | SKIP_PATCH
231 | | ${framesize}= | Set Variable | ${9000}
232 | | ${min_rate}= | Set Variable | ${10000}
233 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
234 | | ${binary_min}= | Set Variable | ${min_rate}
235 | | ${binary_max}= | Set Variable | ${max_rate}
236 | | ${threshold}= | Set Variable | ${min_rate}
237 | | Given Start L2FWD '2' worker threads and rxqueues '1' with jumbo frames 'yes'
238 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
239 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
240 | | ... | ${threshold}
241
242 | tc12-9000B-2t2c-eth-l2xcbase-testpmd-pdrdisc
243 | | [Documentation]
244 | | ... | [Cfg] DUT runs L2 frame forwarding config with 2 threads, 2 phy\
245 | | ... | cores, 1 receive queue per NIC port. [Ver] Find PDR for 9000 Byte\
246 | | ... | frames using binary search start at 10GE linerate, step 10kpps,\
247 | | ... | LT=0.5%.
248 | | [Tags] | 2T2C | MTHREAD | PDRDISC | SKIP_PATCH
249 | | ${framesize}= | Set Variable | ${9000}
250 | | ${min_rate}= | Set Variable | ${10000}
251 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
252 | | ${binary_min}= | Set Variable | ${min_rate}
253 | | ${binary_max}= | Set Variable | ${max_rate}
254 | | ${threshold}= | Set Variable | ${min_rate}
255 | | Given Start L2FWD '2' worker threads and rxqueues '1' with jumbo frames 'yes'
256 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
257 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
258 | | ... | ${threshold} | ${glob_loss_acceptance} | ${glob_loss_acceptance_type}
259
260 | tc13-64B-4t4c-eth-l2xcbase-testpmd-ndrdisc
261 | | [Documentation]
262 | | ... | [Cfg] DUT runs L2 frame forwarding config with 4 threads, 4 phy\
263 | | ... | cores, 2 receive queues per NIC port. [Ver] Find NDR for 64 Byte\
264 | | ... | frames using binary search start at 10GE linerate, step 100kpps.
265 | | [Tags] | 4T4C | MTHREAD | NDRDISC
266 | | ${framesize}= | Set Variable | ${64}
267 | | ${min_rate}= | Set Variable | ${100000}
268 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
269 | | ${binary_min}= | Set Variable | ${min_rate}
270 | | ${binary_max}= | Set Variable | ${max_rate}
271 | | ${threshold}= | Set Variable | ${min_rate}
272 | | Given Start L2FWD '4' worker threads and rxqueues '2' with jumbo frames 'no'
273 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
274 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
275 | | ... | ${threshold}
276
277 | tc14-64B-4t4c-eth-l2xcbase-testpmd-pdrdisc
278 | | [Documentation]
279 | | ... | [Cfg] DUT runs L2 frame forwarding config with 4 threads, 4 phy\
280 | | ... | cores, 2 receive queues per NIC port. [Ver] Find PDR for 64 Byte\
281 | | ... | frames using binary search start at 10GE linerate, step 100kpps,\
282 | | ... | LT=0.5%.
283 | | [Tags] | 4T4C | MTHREAD | PDRDISC | SKIP_PATCH
284 | | ${framesize}= | Set Variable | ${64}
285 | | ${min_rate}= | Set Variable | ${100000}
286 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
287 | | ${binary_min}= | Set Variable | ${min_rate}
288 | | ${binary_max}= | Set Variable | ${max_rate}
289 | | ${threshold}= | Set Variable | ${min_rate}
290 | | Given Start L2FWD '4' worker threads and rxqueues '2' with jumbo frames 'no'
291 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
292 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
293 | | ... | ${threshold} | ${glob_loss_acceptance} | ${glob_loss_acceptance_type}
294
295 | tc15-1518B-4t4c-eth-l2xcbase-testpmd-ndrdisc
296 | | [Documentation]
297 | | ... | [Cfg] DUT runs L2 frame forwarding config with 4 threads, 4 phy\
298 | | ... | cores, 2 receive queues per NIC port. [Ver] Find NDR for 1518 Byte\
299 | | ... | frames using binary search start at 10GE linerate, step 10kpps.
300 | | [Tags] | 4T4C | MTHREAD | NDRDISC | SKIP_PATCH
301 | | ${framesize}= | Set Variable | ${1518}
302 | | ${min_rate}= | Set Variable | ${10000}
303 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
304 | | ${binary_min}= | Set Variable | ${min_rate}
305 | | ${binary_max}= | Set Variable | ${max_rate}
306 | | ${threshold}= | Set Variable | ${min_rate}
307 | | Given Start L2FWD '4' worker threads and rxqueues '2' with jumbo frames 'no'
308 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
309 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
310 | | ... | ${threshold}
311
312 | tc16-1518B-4t4c-eth-l2xcbase-testpmd-pdrdisc
313 | | [Documentation]
314 | | ... | [Cfg] DUT runs L2 frame forwarding config with 4 threads, 4 phy\
315 | | ... | cores, 2 receive queues per NIC port. [Ver] Find PDR for 1518 Byte\
316 | | ... | frames using binary search start at 10GE linerate, step 10kpps,\
317 | | ... | LT=0.5%.
318 | | [Tags] | 4T4C | MTHREAD | PDRDISC | SKIP_PATCH
319 | | ${framesize}= | Set Variable | ${1518}
320 | | ${min_rate}= | Set Variable | ${10000}
321 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
322 | | ${binary_min}= | Set Variable | ${min_rate}
323 | | ${binary_max}= | Set Variable | ${max_rate}
324 | | ${threshold}= | Set Variable | ${min_rate}
325 | | Given Start L2FWD '4' worker threads and rxqueues '2' with jumbo frames 'no'
326 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
327 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
328 | | ... | ${threshold} | ${glob_loss_acceptance} | ${glob_loss_acceptance_type}
329
330 | tc17-9000B-4t4c-eth-l2xcbase-testpmd-ndrdisc
331 | | [Documentation]
332 | | ... | [Cfg] DUT runs L2 frame forwarding config with 4 threads, 4 phy\
333 | | ... | cores, 2 receive queues per NIC port. [Ver] Find NDR for 9000 Byte\
334 | | ... | frames using binary search start at 10GE linerate, step 10kpps.
335 | | [Tags] | 4T4C | MTHREAD | NDRDISC | SKIP_PATCH
336 | | ${framesize}= | Set Variable | ${9000}
337 | | ${min_rate}= | Set Variable | ${10000}
338 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
339 | | ${binary_min}= | Set Variable | ${min_rate}
340 | | ${binary_max}= | Set Variable | ${max_rate}
341 | | ${threshold}= | Set Variable | ${min_rate}
342 | | Given Start L2FWD '4' worker threads and rxqueues '2' with jumbo frames 'yes'
343 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
344 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
345 | | ... | ${threshold}
346
347 | tc18-9000B-4t4c-eth-l2xcbase-testpmd-pdrdisc
348 | | [Documentation]
349 | | ... | [Cfg] DUT runs L2 frame forwarding config with 4 threads, 4 phy\
350 | | ... | cores, 2 receive queues per NIC port. [Ver] Find PDR for 9000 Byte
351 | | ... | frames using binary search start at 10GE linerate, step 5kpps,\
352 | | ... | LT=0.5%.
353 | | [Tags] | 4T4C | MTHREAD | PDRDISC | SKIP_PATCH
354 | | ${framesize}= | Set Variable | ${9000}
355 | | ${min_rate}= | Set Variable | ${10000}
356 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
357 | | ${binary_min}= | Set Variable | ${min_rate}
358 | | ${binary_max}= | Set Variable | ${max_rate}
359 | | ${threshold}= | Set Variable | ${min_rate}
360 | | Given Start L2FWD '4' worker threads and rxqueues '2' with jumbo frames 'yes'
361 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
362 | | ... | ${binary_max} | 3-node-xconnect | ${min_rate} | ${max_rate}
363 | | ... | ${threshold} | ${glob_loss_acceptance} | ${glob_loss_acceptance_type}