CSIT-891: Add data sources for 1801 report
[csit.git] / docs / report / dpdk_performance_tests / test_environment.rst
1 .. include:: ../vpp_performance_tests/test_environment_intro.rst\r
2 \r
3 .. include:: ../vpp_performance_tests/test_environment_sut_conf_1.rst\r
4 \r
5 .. include:: ../vpp_performance_tests/test_environment_sut_conf_3.rst\r
6 \r
7 \r
8 DUT Configuration - DPDK\r
9 ------------------------\r
10 \r
11 **DPDK Version**\r
12 \r
13 |dpdk-release|\r
14 \r
15 **DPDK Compile Parameters**\r
16 \r
17 .. code-block:: bash\r
18 \r
19     make install T=x86_64-native-linuxapp-gcc -j\r
20 \r
21 **Testpmd Startup Configuration**\r
22 \r
23 Testpmd startup configuration changes per test case with different settings for CPU\r
24 cores, rx-queues. Startup config is aligned with applied test case tag:\r
25 \r
26 Tagged by **1T1C**\r
27 \r
28 .. code-block:: bash\r
29 \r
30     testpmd -c 0x3 -n 4 -- --numa --nb-ports=2 --portmask=0x3 --nb-cores=1 --max-pkt-len=9000 --txqflags=0 --forward-mode=io --rxq=1 --txq=1 --burst=64 --rxd=1024 --txd=1024 --disable-link-check --auto-start\r
31 \r
32 Tagged by **2T2C**\r
33 \r
34 .. code-block:: bash\r
35 \r
36     testpmd -c 0x403 -n 4 -- --numa --nb-ports=2 --portmask=0x3 --nb-cores=2 --max-pkt-len=9000 --txqflags=0 --forward-mode=io --rxq=1 --txq=1 --burst=64 --rxd=1024 --txd=1024 --disable-link-check --auto-start\r
37 \r
38 Tagged by **4T4C**\r
39 \r
40 .. code-block:: bash\r
41 \r
42     testpmd -c 0xc07 -n 4 -- --numa --nb-ports=2 --portmask=0x3 --nb-cores=4 --max-pkt-len=9000 --txqflags=0 --forward-mode=io --rxq=2 --txq=2 --burst=64 --rxd=1024 --txd=1024 --disable-link-check --auto-start\r
43 \r
44 **L3FWD Startup Configuration**\r
45 \r
46 L3FWD startup configuration changes per test case with different settings for CPU\r
47 cores, rx-queues. Startup config is aligned with applied test case tag:\r
48 \r
49 Tagged by **1T1C**\r
50 \r
51 .. code-block:: bash\r
52 \r
53     l3fwd -l 1 -n 4 -- -P -L -p 0x3 --config='${port_config}' --enable-jumbo --max-pkt-len=9000 --eth-dest=0,${adj_mac0} --eth-dest=1,${adj_mac1} --parse-ptype\r
54 \r
55 Tagged by **2T2C**\r
56 \r
57 .. code-block:: bash\r
58 \r
59     l3fwd -l 1,2 -n 4 -- -P -L -p 0x3 --config='${port_config}' --enable-jumbo --max-pkt-len=9000 --eth-dest=0,${adj_mac0} --eth-dest=1,${adj_mac1} --parse-ptype\r
60 \r
61 Tagged by **4T4C**\r
62 \r
63 .. code-block:: bash\r
64 \r
65     l3fwd -l 1,2,3,4 -n 4 -- -P -L -p 0x3 --config='${port_config}' --enable-jumbo --max-pkt-len=9000 --eth-dest=0,${adj_mac0} --eth-dest=1,${adj_mac1} --parse-ptype\r
66 \r
67 \r
68 .. include:: ../vpp_performance_tests/test_environment_tg.rst\r